From 02e401615446432bb66cde1d7cfc9049e92f0694 Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Tue, 16 Oct 2018 18:44:27 +0200 Subject: [PATCH] Remove stray unicode character from tox.ini The weird unicode back tick might cause Python unicode deserialization error when reading tox file. Change-Id: I753fa4b700dd3634f19c9e5201575f75ab9e9080 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 3e8e90b6..b14f1c6f 100644 --- a/tox.ini +++ b/tox.ini @@ -55,7 +55,7 @@ commands = oslo_debug_helper -t sushy/tests {posargs} # E123, E125 skipped as they are invalid PEP-8. show-source = True ignore = E123,E125 -# [H106] Don’t put vim configuration in source files. +# [H106] Don't put vim configuration in source files. # [H203] Use assertIs(Not)None to check for None. # [H204] Use assert(Not)Equal to check for equality. # [H205] Use assert(Greater|Less)(Equal) for comparison.