Removed a comment from tox.ini that no longer applied.

This refered to a flake8 rule that's no longer in
use.

Change-Id: Ibeb038c713ae7f91c8e6ca897fe24911da6bd465
This commit is contained in:
Alex Gaynor 2013-07-22 23:39:42 -07:00
parent 9dfc6dbe23
commit e443a6942e
1 changed files with 0 additions and 1 deletions

View File

@ -36,7 +36,6 @@ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,p
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# F401 '<smth>' imported but unused
# F403 'from <smth> import *' used; unable to detect undefined names
# F999 syntax error in doctest
# H201 no 'except:' at least use 'except Exception:'