Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index 7d6620384581651d703a2be36038b001c61a9a6d..1f176e08bda46f9f00a55dda84c9893e9fd6b511 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -44,7 +44,8 @@ def _V8PresubmitChecks(input_api, output_api): |
results.append(output_api.PresubmitError("C++ lint check failed")) |
if not SourceProcessor().Run(input_api.PresubmitLocalPath()): |
results.append(output_api.PresubmitError( |
- "Copyright header and trailing whitespaces check failed")) |
+ "Copyright header, trailing whitespaces and two empty lines " \ |
+ "between declarations check failed")) |
return results |