Commit 941dbec9 authored by weiliangc's avatar weiliangc Committed by Commit bot

Better error message in cc PRESUBMIT

PRESUBMIT checks for usage of FIXME, so added that to error message.

Review URL: https://codereview.chromium.org/515063004

Cr-Commit-Position: refs/heads/master@{#292431}
parent d2d81b54
......@@ -141,7 +141,8 @@ def CheckTodos(input_api, output_api):
if errors:
return [output_api.PresubmitError(
'All TODO comments should be of the form TODO(name).',
'All TODO comments should be of the form TODO(name). ' +
'Use TODO instead of FIX' + 'ME',
items=errors)]
return []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment