Move error.py'>error.py'>error.py out of the client and server and into common_lib.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@1003 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/job.py b/client/bin/job.py
index 23b8305..5b593ea 100755
--- a/client/bin/job.py
+++ b/client/bin/job.py
@@ -10,7 +10,7 @@
# autotest stuff
from autotest_utils import *
from parallel import *
-from error import *
+from common.error import *
import kernel, xen, test, profilers, barrier, filesystem, fd_stack, boottool
import harness, config
import sysinfo
@@ -444,7 +444,7 @@
lcl = dict({'job': self})
str = """
-from error import *
+from common.error import *
from autotest_utils import *
"""
exec(str, lcl, lcl)