don't use full path to audio, as the working directory will do

This commit is contained in:
Damien Elmes 2009-01-05 08:25:18 +09:00
parent 7e74fe3844
commit da6211b9ef

View file

@ -58,7 +58,7 @@ class QueueMonitor(threading.Thread):
def playExternal(path):
global manager
path = os.path.abspath(path).encode(sys.getfilesystemencoding())
path = path.encode(sys.getfilesystemencoding())
queue.append(path)
if not manager or not manager.isAlive():
manager = QueueMonitor()