summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2017-11-05 15:46:52 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2019-01-24 18:04:21 -0800
commit68335d1a6d65de7ed09af580bdb909c5f6c139c2 (patch)
treee5759cfc7eb5a1ebe430274d1695d61ab7dfc836 /CHANGES.txt
parentdb80d0750951e4a9d1ac82338285496534d6c061 (diff)
downloadpep8-68335d1a6d65de7ed09af580bdb909c5f6c139c2.tar.gz
Add check for over-indented blocks
In a project with all lines indented 4 spaces, I noticed pycodestyle was not catching code that was accidentally indented two levels (8 spaces). The over indentation was unintended and can be caught during static analysis. Fixes #430
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 19e2c34..48c985c 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -7,6 +7,7 @@ UNRELEASED / 3.0.0
Changes:
* Remove support for EOL Python 2.6 and 3.3. PR #720.
+* Add E117 error for over-indented code blocks.
2.4.0 (2018-04-10)
------------------