From ecfff84f0e97308024e932208e3de3a0acd4f03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Gul=C3=A1csi?= Date: Wed, 16 Feb 2011 20:23:43 +0100 Subject: [PATCH] make repeat default, rename --repeat to --no-repeat --- flake8/pep8.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake8/pep8.py b/flake8/pep8.py index ec4576a..80ec219 100644 --- a/flake8/pep8.py +++ b/flake8/pep8.py @@ -956,7 +956,7 @@ class Checker(object): return # Don't print the expected error message if ignore_code(code): return - if options.counters[code] == 1 or options.repeat: + if options.counters[code] == 1 or not options.no_repeat: message("%s:%s:%d: %s" % (self.filename, line_number, offset + 1, text)) if options.show_source: @@ -1166,8 +1166,8 @@ def process_options(arglist=None): help="print status messages, or debug with -vv") parser.add_option('-q', '--quiet', default=0, action='count', help="report only file names, or nothing with -qq") - parser.add_option('-r', '--repeat', action='store_true', - help="show all occurrences of the same error") + parser.add_option('-r', '--no-repeat', action='store_true', + help="don't show all occurrences of the same error") parser.add_option('--exclude', metavar='patterns', default=DEFAULT_EXCLUDE, help="exclude files or directories which match these " "comma separated patterns (default: %s)" %