From 1af28ccb52549cb514a3f5b7facbd184e965e071 Mon Sep 17 00:00:00 2001 From: Doug Davis Date: Thu, 12 May 2016 10:09:10 -0700 Subject: [PATCH] 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: Doug Davis --- hack/verify-flags-underscore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify-flags-underscore.py b/hack/verify-flags-underscore.py index 555c3d264a5..d36acaa274f 100755 --- a/hack/verify-flags-underscore.py +++ b/hack/verify-flags-underscore.py @@ -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))