--- framework/framework/subsystems/odeviced/audio.py	2008-12-14 04:24:29.000000000 +0100
+++ framework/framework/subsystems/odeviced/audio.py.new	2008-12-14 04:21:37.000000000 +0100
@@ -239,7 +239,7 @@
                 # 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." ) )

