Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1680)

Unified Diff: au_test_harness/update_exception.py

Issue 6857004: Clean up extreme verbosity of logs in test harness. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Last patch Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « au_test_harness/real_au_worker.py ('k') | au_test_harness/vm_au_worker.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « au_test_harness/real_au_worker.py ('k') | au_test_harness/vm_au_worker.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698