server/autotest.py was referencing it but it didn't exist. This patch creates the error class. Signed-off-by: Lucas Meneghel Rodrigues <lmr@xxxxxxxxxx> --- client/common_lib/error.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/client/common_lib/error.py b/client/common_lib/error.py index 08401ce..9e0002d 100644 --- a/client/common_lib/error.py +++ b/client/common_lib/error.py @@ -185,6 +185,11 @@ class AutoservError(Exception): pass +class AutoservInstallError(Exception): + """Autoserv failed in installing autotest on a client machine""" + pass + + class AutoservSSHTimeout(AutoservError): """SSH experienced a connection timeout""" pass -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html