From c243c583d89b8f5e88d94dc2d54af744a3ae8306 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 31 Aug 2015 19:33:58 +1000 Subject: [PATCH] update latex path for osx 10.10 --- anki/latex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/latex.py b/anki/latex.py index 4b1913b68..387507e74 100644 --- a/anki/latex.py +++ b/anki/latex.py @@ -24,7 +24,7 @@ regexps = { # add standard tex install location to osx if isMac: - os.environ['PATH'] += ":/usr/texbin" + os.environ['PATH'] += ":/usr/texbin:/Library/TeX/texbin" def stripLatex(text): for match in regexps['standard'].finditer(text):