Don't include openstack/common in flake8 exclude list

There is no this directory openstack/common which was used to keep codes from
oslo-incubator, we have retired oslo-incubator. Removing openstack/common from
all OpenStack code in favor of the Oslo libraries is a project wide goal
for the Ocata release. So don't use this directory any more. We should drop it
for improving searching efficiency.

Change-Id: I6cd76720af028688490d0a3508dc93c9ea8261fa
This commit is contained in:
melissaml 2016-11-01 17:48:39 +08:00
parent c3cf67f5e5
commit cb1f99b855
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ commands=
[flake8]
ignore = E123,E126,E128,E241,E265,E713,H202,H405,H238
show-source = True
exclude=.venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build
exclude=.venv,.git,.tox,dist,*lib/python*,*egg,build
max-complexity=20
[hacking]