[pkg-fso-commits] [SCM] FSO frameworkd Debian packaging branch, master, updated. milestone4-368-g700ab82

Michael 'Mickey' Lauer mickey at vanille-media.de
Mon Feb 2 18:51:36 UTC 2009


The following commit has been merged in the master branch:
commit 08e955a3cad3dd68efae4089f7a007054be8a2f1
Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Mon Dec 15 00:05:30 2008 +0100

    odeviced: audio: encode filename in " to fix FSO bug #297.

diff --git a/framework/subsystems/odeviced/audio.py b/framework/subsystems/odeviced/audio.py
index 137f4db..edfef40 100644
--- a/framework/subsystems/odeviced/audio.py
+++ b/framework/subsystems/odeviced/audio.py
@@ -11,7 +11,7 @@ Module: audio
 """
 
 MODULE_NAME = "odeviced.audio"
-__version__ = "0.5.1.1"
+__version__ = "0.5.1.2"
 
 from framework.config import config
 from framework.patterns import asyncworker
@@ -239,7 +239,7 @@ class GStreamerPlayer( Player ):
                 # however it should still be faster than creating the pipeline from
                 # individual elements in python, since it's all happening in compiled code
                 try:
-                    pipeline = gst.parse_launch( "filesrc location=%s ! %s ! alsasink" % ( file, decoder ) )
+                    pipeline = gst.parse_launch( 'filesrc location="%s" ! %s ! alsasink' % ( file, decoder ) )
                 except gobject.GError, e:
                     logger.exception( "could not instanciate pipeline: %s" % e )
                     return error_cb( PlayerError( "Could not instanciate pipeline due to an internal error." ) )

-- 
FSO frameworkd Debian packaging



More information about the pkg-fso-commits mailing list