diff --git a/anki/sound.py b/anki/sound.py index 045953b4d..5c66c357d 100644 --- a/anki/sound.py +++ b/anki/sound.py @@ -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()