fix syntax errors, no longer import System.py
authorTony Mack <tmack@cs.princeton.edu>
Mon, 7 Jan 2008 18:27:34 +0000 (18:27 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Mon, 7 Jan 2008 18:27:34 +0000 (18:27 +0000)
qaapi/qash

index 3eae64f..1ab9d62 100755 (executable)
@@ -8,8 +8,7 @@ import os, sys
 from optparse import OptionParser
 from traceback import print_exc
 
-import utils
-import System
+import qa.utils
 from qa.QAAPI import QAAPI
 
 sys.path.append(os.path.dirname(os.path.realpath(sys.argv[0])))
@@ -22,9 +21,9 @@ parser.add_option("--help", action = "help", help = "show this help message and
 
 # XX Load callable tests
 try:
-   qaapi import QAAPI(globals(), 
-                     options.config, 
-                     options.log)
+   QAAPI(globals(), 
+        options.config, 
+        options.log)
 
 except Exception, err:
     print "Error: ", err