summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Logan <brandon.logan@rackspace.com>2016-07-08 01:30:52 -0500
committerIhar Hrachyshka <ihrachys@redhat.com>2016-07-25 22:23:25 +0000
commit4ff793679262071f71457bc9ce87d44dc24be3b1 (patch)
tree12c5908be2fdb097bd5294a153db28eddb05d6b7
parent67c34607f29ba39bb0709bd31f31e784fa5d1af6 (diff)
downloadneutron-4ff793679262071f71457bc9ce87d44dc24be3b1.tar.gz
Allow tox to be run with python 3
The tox.ini has some unicode characters that cannot be decoded, so just executing tox will immediately cause an error because the tox.ini cannot be parsed. Closes-Bug: #1600068 Change-Id: Ia01ae80d9321584845bb06c3f6673d13027bd2db (cherry picked from commit b06c7e857edbffe21745e0c85b021cc2d7423a7f)
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 89a593e79c..4e9c33fe02 100644
--- a/tox.ini
+++ b/tox.ini
@@ -166,7 +166,7 @@ commands = {[testenv:docs]commands}
# E126 continuation line over-indented for hanging indent
# E128 continuation line under-indented for visual indent
# E129 visually indented line with same indent as next logical line
-# E265 block comment should start with ‘# ‘
+# E265 block comment should start with '# '
# H404 multi line docstring should start with a summary
# H405 multi line docstring summary not separated with an empty line
ignore = E125,E126,E128,E129,E265,H404,H405