Index: presubmit_support.py |
diff --git a/presubmit_support.py b/presubmit_support.py |
index d22c9c07296278de38fd2d01a23d304986b0fe15..b40abada7e04d63f7f9a56fc2a8efa481829253b 100755 |
--- a/presubmit_support.py |
+++ b/presubmit_support.py |
@@ -1301,8 +1301,10 @@ def DoPresubmitChecks(change, |
global _ASKED_FOR_FEEDBACK |
# Ask for feedback one time out of 5. |
if (len(results) and random.randint(0, 4) == 0 and not _ASKED_FOR_FEEDBACK): |
- output.write("Was the presubmit check useful? Please send feedback " |
- "& hate mail to maruel@chromium.org!\n") |
+ output.write( |
+ 'Was the presubmit check useful? If not, run "git cl presubmit -v"\n' |
+ 'to figure out the PRESUBMIT.py which were run, then run git blame\n' |
iannucci
2014/01/14 02:38:39
to figure out which PRESUBMIT.py was run, ...
M-A Ruel
2014/01/14 15:19:50
Done.
|
+ 'on the file to figure out who to ask for help.\n') |
_ASKED_FOR_FEEDBACK = True |
return output |
finally: |