summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Baker <sbaker@redhat.com>2022-02-18 12:50:30 +1300
committerSteve Baker <sbaker@redhat.com>2022-02-18 13:02:39 +1300
commitf8e5808ce8ca9c27dcd673c17077c045d2187954 (patch)
treebfa05f22b735f495e4a04c4eedd3dcc866717ac7
parentee76a3a05a24f1ca6ff28c7b60b0cee5e64e07b0 (diff)
downloadironic-f8e5808ce8ca9c27dcd673c17077c045d2187954.tar.gz
Ensure tox.ini is ASCII
The left/right single quotation marks cause an ascii decode error in some python3.6 environments. Change-Id: I80d1b3e7f9e2e23ddaca640714a342b63ae3a5fa (cherry picked from commit b8ef35a98462c0605aa6efa47932f03e34cf994a)
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 7da2edf57..507e830ce 100644
--- a/tox.ini
+++ b/tox.ini
@@ -132,7 +132,7 @@ max-complexity=19
# [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.
-# [H210] Require ‘autospec’, ‘spec’, or ‘spec_set’ in mock.patch/mock.patch.object calls
+# [H210] Require 'autospec', 'spec', or 'spec_set' in mock.patch/mock.patch.object calls
# [H904] Delay string interpolations at logging calls.
enable-extensions=H106,H203,H204,H205,H210,H904
# [E402] Module level import not at top of file