From c30720f81ae433384babd21301dab78b53d8c292 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sat, 14 Aug 2010 16:30:42 +0200 Subject: [PATCH] Fix pylint long line warning --- mopidy/outputs/gstreamer.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mopidy/outputs/gstreamer.py b/mopidy/outputs/gstreamer.py index 9ce514df..c2547bdb 100644 --- a/mopidy/outputs/gstreamer.py +++ b/mopidy/outputs/gstreamer.py @@ -42,8 +42,11 @@ class GStreamerProcess(BaseProcess): http://jameswestby.net/weblog/tech/14-caution-python-multiprocessing-and-glib-dont-mix.html. """ - pipeline_description = \ - 'appsrc name=src uridecodebin name=uri ! volume name=volume ! autoaudiosink' + pipeline_description = ' ! '.join([ + 'appsrc name=src uridecodebin name=uri', + 'volume name=volume', + 'autoaudiosink name=sink', + ]) def __init__(self, core_queue, output_queue): super(GStreamerProcess, self).__init__()