Don't include openstack/common in flake8 exclude list

The directory openstack/common was used to keep codes from
oslo-incubator, we have retired oslo-incubator, so don't use
this directory any more.

Change-Id: I0637c17f5c7aecf5bda87c8e7a6ef834be299baa
This commit is contained in:
lilintan 2016-08-02 20:52:32 +08:00
parent da48676d5b
commit 97a63416ee
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ show-source = true
# D203: 1 blank line required before class docstring (deprecated in pep257)
ignore = D100,D101,D102,D103,D104,D203
exclude=.venv,.git,.tox,build,dist,*openstack/common*,*lib/python*,*egg,tools,vendor,.update-venv,*.ini,*.po,*.pot
exclude=.venv,.git,.tox,build,dist,*lib/python*,*egg,tools,vendor,.update-venv,*.ini,*.po,*.pot
max-complexity=24
[testenv:docs]