summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2012-06-26 19:42:43 +0200
committerFlorent Xicluna <florent.xicluna@gmail.com>2012-06-26 19:42:43 +0200
commitf06d3da01fc0b99d64cf3b72b981edd56cfa0760 (patch)
tree5c4c996b5687cf2eb4082b82cdacfd4f37b43021
parent422ef3195d9d503e4efce1ff455987a345e2caa4 (diff)
downloadpep8-f06d3da01fc0b99d64cf3b72b981edd56cfa0760.tar.gz
Revert to the pre-1.2 behavior: --show-pep8 does not imply --first; issue #89.
-rw-r--r--CHANGES.txt3
-rwxr-xr-xpep8.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ac55e32..e7a5e8e 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -5,6 +5,9 @@ Changelog
1.x (UNRELEASED)
----------------
+* Revert to the previous behaviour for ``--show-pep8``:
+ do not imply ``--first``. (Issue #89)
+
* Fix false positive for E121, and missed E124. (Issue #92)
* Set a sensible default path for config file on Windows. (Issue #95)
diff --git a/pep8.py b/pep8.py
index 5a85426..5903f27 100755
--- a/pep8.py
+++ b/pep8.py
@@ -1853,8 +1853,6 @@ def process_options(arglist=None, parse_argv=False, config_file=None):
help="config file location (default: %default)")
options, args = parser.parse_args(arglist)
- if options.show_pep8:
- options.repeat = False
options.reporter = None
if options.testsuite: