Chromium Code Reviews| 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..43ec1dbe85ab8f60b2b446668b9139e11dd0ba02 100644 |
| --- a/au_test_harness/update_exception.py |
| +++ b/au_test_harness/update_exception.py |
| @@ -7,5 +7,6 @@ |
| class UpdateException(Exception): |
| """Exception thrown when _UpdateImage or _UpdateUsingPayload fail""" |
| def __init__(self, code, stdout): |
|
davidjames
2011/04/15 17:52:09
s/stdout/output/ since it includes all output. Can
sosa
2011/04/18 21:12:44
Done. Changed to output to be more vague. Doesn'
|
| + super(UpdateException, self).__init__(stdout) |
| self.code = code |
| self.stdout = stdout |