Fix E113 hacking check

Remove E113 from the ignored check and fix them. Just one of them raised.

Change-Id: Ie4897264793a34c1fd5f64e7ca4f285f3b2d4504
This commit is contained in:
Jaume Devesa 2014-10-06 12:11:39 +02:00
parent 64b2d8a01b
commit d046a95946
2 changed files with 3 additions and 4 deletions

View File

@ -36,10 +36,9 @@ downloadcache = ~/cache/pip
# H302 import only modules # H302 import only modules
# #
# TODO Fix the following rules from hacking 0.9.x # TODO Fix the following rules from hacking 0.9.x
# E113 unexpected indentation
# E265 block comment should start with '# ' # E265 block comment should start with '# '
# H405 multi line docstring summary not separated with an empty line # H405 multi line docstring summary not separated with an empty line
# H307 like imports should be grouped together # H307 like imports should be grouped together
ignore = E113,E125,E265,H302,H307,H405 ignore = E125,E265,H302,H307,H405
show-source = true show-source = true
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools