From 79b5d466202ecfeaae3d9472ed89d4f94ab66450 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 26 May 2014 14:49:45 -0700 Subject: vocabcompiler now takes arguments (useful for testing) --- boot/boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'boot/boot.py') diff --git a/boot/boot.py b/boot/boot.py index 56bcc7e..b33fd34 100755 --- a/boot/boot.py +++ b/boot/boot.py @@ -22,7 +22,7 @@ def configure(): print "CONNECTED TO INTERNET" print "COMPILING DICTIONARY" - vocabcompiler.compile() + vocabcompiler.compile("../client/sentences.txt", "../client/dictionary.dic", "../client/languagemodel.lm") print "STARTING CLIENT PROGRAM" @@ -49,7 +49,7 @@ def configure(): print "CONNECTED TO INTERNET" print "COMPILING DICTIONARY" - vocabcompiler.compile() + vocabcompiler.compile("../client/sentences.txt", "../client/dictionary.dic", "../client/languagemodel.lm") print "STARTING CLIENT PROGRAM" -- cgit v1.3.1