From ef91f9ba7d990bded0b362055d301a26e4fee989 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 7 Jan 2008 18:27:34 +0000 Subject: [PATCH] fix syntax errors, no longer import System.py --- qaapi/qash | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/qaapi/qash b/qaapi/qash index 3eae64f..1ab9d62 100755 --- a/qaapi/qash +++ b/qaapi/qash @@ -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 -- 2.43.0