diff options
| -rwxr-xr-x | boot/boot.py | 3 | ||||
| -rw-r--r-- | client/vocabcompiler.py (renamed from boot/vocabcompiler.py) | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/boot/boot.py b/boot/boot.py index 8697c91..e807beb 100755 --- a/boot/boot.py +++ b/boot/boot.py @@ -28,14 +28,13 @@ else: path = "/usr/local/lib/" os.environ["PATH"] = path -import urllib2 -import vocabcompiler import traceback lib_path = os.path.abspath('../client') sys.path.append(lib_path) from diagnose import Diagnostics +import vocabcompiler import speaker as speak speaker = speak.newSpeaker() diff --git a/boot/vocabcompiler.py b/client/vocabcompiler.py index f22da1a..1b4d94c 100644 --- a/boot/vocabcompiler.py +++ b/client/vocabcompiler.py @@ -7,10 +7,8 @@ import os import sys import glob -lib_path = os.path.abspath('../client') -mod_path = os.path.abspath('../client/modules/') +mod_path = os.path.abspath('modules/') -sys.path.append(lib_path) sys.path.append(mod_path) import g2p |
