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

Unified Diff: gclient_utils.py

Issue 15792004: Add job prefix to error messages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_utils.py
diff --git a/gclient_utils.py b/gclient_utils.py
index 54d4e0ecf5ce374556006a502b0f05a3fd471361..dbbe6eb2be31914df4ff6ce0100e321b6cb9451b 100644
--- a/gclient_utils.py
+++ b/gclient_utils.py
@@ -22,8 +22,11 @@ import subprocess2
class Error(Exception):
"""gclient exception class."""
- pass
-
+ def __init__(self, msg, *args, **kwargs):
+ index = getattr(threading.currentThread(), 'index', 0)
+ if index:
+ msg = '\n'.join(['%d>_____ %s' % (index, l) for l in msg.splitlines()])
M-A Ruel 2013/05/24 22:25:56 I like the idea but two things: - A generator is s
szager1 2013/05/24 22:48:16 I changed the format. As for using a generator --
M-A Ruel 2013/05/24 22:59:20 You misunderstood. I meant removing the brackets,
+ Exception.__init__(self, msg, *args, **kwargs)
M-A Ruel 2013/05/24 22:25:56 I think super() works here. The old-style class pr
szager1 2013/05/24 22:48:16 Done.
def SplitUrlRevision(url):
"""Splits url and returns a two-tuple: url, rev"""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698