summaryrefslogtreecommitdiff
path: root/pep8.py
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2014-12-22 22:15:01 -0800
committerIan Lee <IanLee1521@gmail.com>2014-12-22 22:15:01 -0800
commita21598e67abeb557f85855cdc04106c7c212f09b (patch)
tree0c4f424f088d185cdeca110e1ef8ed9657dfa39e /pep8.py
parent96ddf8c25f053a9d7ced73b194d8558c90069319 (diff)
parent2e540a1d8c623b99b35c444649848a40c2f2c95c (diff)
downloadpep8-a21598e67abeb557f85855cdc04106c7c212f09b.tar.gz
Merge pull request #360 from jcrocholl/issue-316
Add E121 and E126 to the DEFAULT_IGNORE list
Diffstat (limited to 'pep8.py')
-rwxr-xr-xpep8.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pep8.py b/pep8.py
index a2e718b..940a272 100755
--- a/pep8.py
+++ b/pep8.py
@@ -65,7 +65,7 @@ except ImportError:
__version__ = '1.6.0a0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
-DEFAULT_IGNORE = 'E123,E226,E24,E704'
+DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704'
try:
if sys.platform == 'win32':
DEFAULT_CONFIG = os.path.expanduser(r'~\.pep8')