Join together several arguments to load (this corrects for songs with

spaces in the name)
This commit is contained in:
bjschuma 2009-12-22 21:56:58 -05:00
parent b37085501e
commit cf0a360bc6
1 changed files with 5 additions and 2 deletions

View File

@ -37,8 +37,11 @@ def close():
def run(args=None):
if args == None:
return
gstreamer.load(args[0])
if len(args) == 1:
gstreamer.load(args[0])
else:
join = ' '
gstreamer.load(join.join(args))
#filename = expandPath(args[0])
#if checkPath(filename) == False:
# return