diff options
author | Christian Berendt <berendt@b1-systems.de> | 2014-05-30 00:13:23 +0200 |
---|---|---|
committer | Christian Berendt <berendt@b1-systems.de> | 2014-05-30 00:13:43 +0200 |
commit | 2f16664b8350e3ca8ca915b1915b64033de07df0 (patch) | |
tree | 89d34115b2bbea8aaf56c3c0ec210c78770e22b0 /tox.ini | |
parent | b08b5928b628ff64a46efe72f61d650182d20d98 (diff) | |
download | zuul-2f16664b8350e3ca8ca915b1915b64033de07df0.tar.gz |
Use except x as y instead of except x, y
According to https://docs.python.org/3/howto/pyporting.html the
syntax changed in Python 3.x. The new syntax is usable with
Python >= 2.6 and should be preferred to be compatible with Python3.
Enabled hacking check H231.
Change-Id: I7ce80163cc328c0368583d1dc76e9e0b0f7cd6dc
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -37,5 +37,6 @@ commands = zuul-server -c etc/zuul.conf-sample -t -l {posargs} [flake8] ignore = E125,H +select = H231 show-source = True exclude = .venv,.tox,dist,doc,build,*.egg |