summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-01-11 12:23:18 -0600
committerBrant Knudson <bknudson@us.ibm.com>2015-01-21 07:26:59 -0600
commit97d51bd8326af52fd197754f24a866a0d28df122 (patch)
tree277a14f152fec3c3e7224bf9ce9cbfa140cda198 /tox.ini
parenteaab62aca5f570bd119b4c602db7845a017c958e (diff)
downloadpython-keystoneclient-97d51bd8326af52fd197754f24a866a0d28df122.tar.gz
Correct failures for check H238
The new H238 "old style class declaration, use new style (inherit from `object`)" rule was failing and ignored. Change-Id: I9f616d74e4777640cc9441e96f2bd8c1873aaaca
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 49586a5..a050f6e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -34,8 +34,7 @@ commands = oslo_debug_helper -t keystoneclient/tests {posargs}
# H304: no relative imports
# H405: multi line docstring summary not separated with an empty line
# E122: continuation line missing indentation or outdented
-# New from hacking 0.10: H238
-ignore = H238,H304,H405,E122
+ignore = H304,H405,E122
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*