From 680998ee3434d0f71f7588784986db0e01c792cd Mon Sep 17 00:00:00 2001 From: Brandon Logan Date: Fri, 8 Jul 2016 14:28:18 -0500 Subject: [PATCH] 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. Change-Id: I32a53cc4b019445f1f7a1dca847f14eba4bda81c Closes-Bug: #1600068 (cherry picked from commit 7f87f63911e1a10519d7b1da160cf55fbd4335cc) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7084a80ec..8704617c5 100644 --- a/tox.ini +++ b/tox.ini @@ -55,7 +55,7 @@ commands = python -m testtools.run \ # 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 '# ' # H405 multi line docstring summary not separated with an empty line # TODO(marun) H404 multi line docstring should start with a summary # N324 contextlib.nested is deprecated