From e0515b25546b978db1b3e38ade65c98beeec3602 Mon Sep 17 00:00:00 2001 From: schneefux Date: Tue, 30 Sep 2014 18:58:24 +0200 Subject: Move app_utils.py from client/modules to client/ app_utils.py does not have a WORDS constant and thus does not belong into that folder --- jasper.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'jasper.py') diff --git a/jasper.py b/jasper.py index 5f08e68..7223469 100755 --- a/jasper.py +++ b/jasper.py @@ -10,6 +10,10 @@ import argparse from client.diagnose import Diagnostics from client import vocabcompiler, tts, stt, jasperpath + +# Add jasperpath.LIB_PATH to sys.path +sys.path.append(jasperpath.LIB_PATH) + from client.conversation import Conversation parser = argparse.ArgumentParser(description='Jasper Voice Control Center') @@ -25,8 +29,6 @@ else: # Change CWD to jasperpath.LIB_PATH os.chdir(jasperpath.LIB_PATH) -# Add jasperpath.LIB_PATH to sys.path -sys.path.append(jasperpath.LIB_PATH) class Jasper(object): def __init__(self): -- cgit v1.3.1