From e744a6da87cd760fdbfc63871344fd2ccfef7596 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sun, 7 Sep 2014 21:38:13 +0200 Subject: [PATCH] audio: Resolve review comments --- mopidy/audio/actor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index 910c6653..8b77ee65 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -403,7 +403,7 @@ class _Handler(object): AudioListener.send('position_changed', position=position_ms) def on_stream_changed(self, uri): - gst_logger.debug('Got stream-changed message: uri:%s', uri) + gst_logger.debug('Got stream-changed message: uri=%s', uri) logger.debug('Audio event: stream_changed(uri=%s)', uri) AudioListener.send('stream_changed', uri=uri) @@ -484,8 +484,8 @@ class Audio(pykka.ThreadingActor): self._playbin.set_state(gst.STATE_NULL) def _setup_output(self): - # We don't want to test outputs for regular testing, so just instal - # an unsynced fakesink when someone asks for a testouput. + # We don't want to use outputs for regular testing, so just install + # an unsynced fakesink when someone asks for a 'testoutput'. if self._config['audio']['output'] == 'testoutput': self._outputs = gst.element_factory_make('fakesink') else: