Fix E128 violations and re-enable gating

E128 got stricter in hacking 0.9, so fix new violations and
re-enable gating.

Change-Id: Id061f154f97d78bbbcd8704e6213034cce90a841
This commit is contained in:
Dina Belova
2014-06-25 12:47:56 +04:00
parent 7b2bea56f3
commit c3c4839514
10 changed files with 53 additions and 55 deletions

View File

@@ -37,7 +37,6 @@ commands = python setup.py build_sphinx
commands = {posargs}
[flake8]
# E128 continuation line under-indented for visual indent
# E251 unexpected spaces around keyword / parameter equals
# E265 block comment should start with #
# F402 import module shadowed by loop variable
@@ -45,7 +44,7 @@ commands = {posargs}
# H307 like imports should be grouped together
# H405 multi line docstring summary not separated with an empty line
# H904 Wrap long lines in parentheses instead of a backslash
ignore = E128,E251,E265,F402,H305,H307,H405,H904
ignore = E251,E265,F402,H305,H307,H405,H904
builtins = _
exclude=.venv,.git,.tox,dist,doc,./ceilometer/openstack/common,*lib/python*,*egg,tools,nova_tests,build
show-source = True