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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Module containing update exceptions.""" 5 """Module containing update exceptions."""
6 6
7 class UpdateException(Exception): 7 class UpdateException(Exception):
8 """Exception thrown when _UpdateImage or _UpdateUsingPayload fail""" 8 """Exception thrown when _UpdateImage or _UpdateUsingPayload fail"""
9 def __init__(self, code, stdout): 9 def __init__(self, code, output):
10 super(UpdateException, self).__init__(output)
10 self.code = code 11 self.code = code
11 self.stdout = stdout 12 self.output = output
OLDNEW
« 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