From bc347f16508ea5e3dcf9305f6b840e962b6cdecd Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Thu, 18 Dec 2014 22:45:50 +0100 Subject: [PATCH] audio: Fix minor typo in a debug log message --- mopidy/audio/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/audio/actor.py b/mopidy/audio/actor.py index 3bc62a29..9ec85f4c 100644 --- a/mopidy/audio/actor.py +++ b/mopidy/audio/actor.py @@ -409,7 +409,7 @@ class _Handler(object): # required helper installed? def on_new_segment(self, update, rate, format_, start, stop, position): - gst_logger.debug('Got new-segment event: update=%s rate=%s format=%s' + gst_logger.debug('Got new-segment event: update=%s rate=%s format=%s ' 'start=%s stop=%s position=%s', update, rate, format_.value_name, start, stop, position) position_ms = position // gst.MSECOND