Index: au_test_harness/update_exception.py |
diff --git a/au_test_harness/update_exception.py b/au_test_harness/update_exception.py |
index 4c1e73ec64641a23a6bc3d63e99a3d74794615dc..432ce31b928f76366dc093add1f874b01cae4e4e 100644 |
--- a/au_test_harness/update_exception.py |
+++ b/au_test_harness/update_exception.py |
@@ -6,6 +6,7 @@ |
class UpdateException(Exception): |
"""Exception thrown when _UpdateImage or _UpdateUsingPayload fail""" |
- def __init__(self, code, stdout): |
+ def __init__(self, code, output): |
+ super(UpdateException, self).__init__(output) |
self.code = code |
- self.stdout = stdout |
+ self.output = output |