From 09a03b3f0b7aea2df2ef5bb5957eb54dc8d12b3c Mon Sep 17 00:00:00 2001
From: Lu lei <lei.lu@easystack.cn>
Date: Tue, 30 Aug 2016 14:00:29 +0800
Subject: [PATCH] Remove *openstack/common* from flake8 excclude list in
 tox.ini

The *openstack/common* was used to keep codes from oslo-incubator,
but oslo-incubator was ignore in oslo3.11.0. So I think we needn't
use it any more. Here is the oslo.utils CHANGES link:

http://docs.openstack.org/developer/oslo.utils/history.html

Change-Id: I828fbf5b1ee1435a85ffe5eb2295064b36064295
---
 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tox.ini b/tox.ini
index 4f77d284..6ecdb74c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -37,7 +37,7 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
 [flake8]
 ignore = D100,D101,D102,D103,D104,D105,D200,D201,D202,D204,D205,D300,D301,D400,D401
 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]