From f238bc772e6bdc361985c2f70038141fe06283ac Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 9 Jan 2017 12:52:52 +1000 Subject: [PATCH] fix audio on mac --- anki/sound.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sound.py b/anki/sound.py index e85eec94e..c2b0c9339 100644 --- a/anki/sound.py +++ b/anki/sound.py @@ -32,7 +32,7 @@ def _packagedCmd(cmd): env = os.environ.copy() if isMac: dir = os.path.dirname(os.path.abspath(__file__)) - exeDir = os.path.abspath(dir + "/../../../../Resources/audio") + exeDir = os.path.abspath(dir + "/../../Resources/audio") else: exeDir = os.path.dirname(os.path.abspath(sys.argv[0])) if isWin and not cmd[0].endswith(".exe"):