Prettify
authorJohan Dahlin <johan@gnome.org>
Mon, 29 Mar 2004 10:21:15 +0000 (10:21 +0000)
committerJohan Dahlin <johan@gnome.org>
Mon, 29 Mar 2004 10:21:15 +0000 (10:21 +0000)
Original commit message from CVS:
Prettify

examples/gst/wavenc.py

index 40124f8..9263fdf 100644 (file)
@@ -4,8 +4,7 @@ import gst
 
 def decode(filename):
     output = filename + '.wav'
-    pipeline = ('filesrc location="%s"' + \
-                ' ! spider ! wavenc ! ' + \
+    pipeline = ('filesrc location="%s" ! spider ! wavenc ! '
                 'filesink location="%s"') % (filename, output)
     
     bin = gst.parse_launch(pipeline)