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

Unified Diff: tools/rebaseline.py

Issue 23968002: rebaseline.py: add bug-filing URL to error message (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: updated_message Created 7 years, 3 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: tools/rebaseline.py
===================================================================
--- tools/rebaseline.py (revision 11088)
+++ tools/rebaseline.py (working copy)
@@ -121,8 +121,12 @@
self._failures_encountered.append(exc_info)
else:
print >> sys.stderr, (
- 'Halting at first exception; to keep going, re-run ' +
- 'with the --keep-going-on-failure option set.')
+ '\nHalting at first exception.\n' +
+ 'Please file a bug to epoger@google.com at ' +
+ 'https://code.google.com/p/skia/issues/entry, containing the ' +
+ 'command you ran and the following stack trace.\n\n' +
+ 'Afterwards, you can re-run with the --keep-going-on-failure ' +
+ 'option set.\n')
raise exc_info[1], None, exc_info[2]
def ReportAllFailures(self):
« 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