Commit 1af28ccb authored by Doug Davis's avatar Doug Davis

s/positive/negative/ in the error message

I think we meant to imply that "if the error isn't real" then update the exceptions file- which to me means "false negative", ie. false failure. Signed-off-by: 's avatarDoug Davis <dug@us.ibm.com>
parent 02de0092
......@@ -233,7 +233,7 @@ def main():
if len(bad_lines) != 0:
if not args.skip_exceptions:
print("Found illegal 'flag' usage. If these are false positives you should run `hack/verify-flags-underscore.py -e > hack/verify-flags/exceptions.txt` to update the list.")
print("Found illegal 'flag' usage. If these are false negatives you should run `hack/verify-flags-underscore.py -e > hack/verify-flags/exceptions.txt` to update the list.")
bad_lines.sort()
for (relname, line) in bad_lines:
print("%s:%s" % (relname, line))
......
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