summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-01-11 18:23:19 -0600
committerBrant Knudson <bknudson@us.ibm.com>2015-01-13 20:22:02 -0600
commitf2ee5350395c1c7c3a8a6402a7ba8858c0218311 (patch)
treee2664243dcaea6929f898ee95cebd4f14076a30e /tox.ini
parenta31ed5ca4faace4afe30942a155e210a3334edd3 (diff)
downloadkeystonemiddleware-f2ee5350395c1c7c3a8a6402a7ba8858c0218311.tar.gz
Correct failures for check E122
The E122 "continuation line missing indentation or outdented" rule was failing and ignored. Now it's enforced. Change-Id: Ic0d457bb597fad91da1afd3007563e0bd97f9fbb
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 0d55116..1a69e3b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -32,11 +32,10 @@ downloadcache = ~/cache/pip
commands = oslo_debug_helper {posargs}
[flake8]
-# E122: continuation line missing indentation or outdented
# F821: undefined name
# H304: no relative imports
# H405: multi line docstring summary not separated with an empty line
-ignore = E122,F821,H304,H405
+ignore = F821,H304,H405
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*