From bd72c31b6e9e08c03198c106c49ebf904a50a9cb Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 23 Aug 2014 09:10:37 +0800 Subject: More cleanup, mostly in docstrings --- client/g2p.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/g2p.py') diff --git a/client/g2p.py b/client/g2p.py index 6d72bfe..bae40b6 100644 --- a/client/g2p.py +++ b/client/g2p.py @@ -35,7 +35,7 @@ def translateWords(words): def translateFile(input_filename, output_filename=None): - out = subprocess.check_output(['phonetisaurus-g2p', '--model=%s' % + out = subprocess.check_output(['phonetisaurus-g2p', '--model=%s' % PHONETISAURUS_PATH + "/g014b2b.fst", '--input=%s' % input_filename, '--words', '--isfile']) out = parseOutput(out) -- cgit v1.3.1