summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorHiroshi Miura <miurahr@nttdata.co.jp>2015-08-03 12:23:04 +0900
committerHiroshi Miura <miurahr@nttdata.co.jp>2015-08-04 11:34:51 +0900
commita056f1b3742812a2c861a0d01678dfed3b0087e4 (patch)
tree36376c0756eb4aa54b4bd1ae4503485300b77d64 /tox.ini
parent161e08df1054dc8d47db494de3645a47fcaa1f3a (diff)
downloadpython-swiftclient-a056f1b3742812a2c861a0d01678dfed3b0087e4.tar.gz
fix old style class definition(H238)
Change-Id: Ib5be06fa544f5eb3061c6a3077a3b9986382ecfe Signed-off-by: Hiroshi Miura <miurahr@nttdata.co.jp>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index e5b207c..1008f5d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -45,9 +45,10 @@ commands=
# H102 -> apache2 license exists
# H103 -> license is apache
# H201 -> no bare excepts
+# H238 -> old style classes are deprecated and not available in python3
# H501 -> don't use locals() for str formatting
# H903 -> \n not \r\n
ignore = H
-select = H102, H103, H201, H501, H903
+select = H102, H103, H201, H238, H501, H903
show-source = True
exclude = .venv,.tox,dist,doc,*egg