aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-06 17:26:09 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-09-06 17:26:09 +0000
commit80f9cf18cc665f57834ee9989ce495cda067313e (patch)
tree1ea0a5364e563bb88e5365fd0846d453215e63ad /tools
parentbfe2b9d3a290d0153b82617cd6b65a4814fe89e3 (diff)
rebaseline.py: add bug-filing URL to error message
R=bsalomon@google.com Review URL: https://codereview.chromium.org/23968002 git-svn-id: http://skia.googlecode.com/svn/trunk@11133 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rebaseline.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/rebaseline.py b/tools/rebaseline.py
index a1e3c576b4..d4edf5034c 100755
--- a/tools/rebaseline.py
+++ b/tools/rebaseline.py
@@ -121,8 +121,12 @@ class ExceptionHandler(object):
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):