Fix missing import error in kernel control file install stanza. It was
about to raise an error anyways so as it is, it still bails out but the
error message isn't the desired nice one.
Signed-off-by: Gregory Smith <gps@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3330 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/control_file.py b/frontend/afe/control_file.py
index 501045d..fbf3b47 100644
--- a/frontend/afe/control_file.py
+++ b/frontend/afe/control_file.py
@@ -43,6 +43,8 @@
%s pass
\"""
+from autotest_lib.client.common_lib import error
+
at = autotest.Autotest()
def install_kernel(machine, kernel_version):
host = hosts.create_host(machine)