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:03:24 +1300
commitd21144fd2d40f147800f812f48d7c285b1296b99 (patch)
tree27c496a8b7387f86a17a78b28c3eddd8b5fd1823
parent358ee55641a9bc6a8dd3ac1378cafde6148591aa (diff)
downloadironic-d21144fd2d40f147800f812f48d7c285b1296b99.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 71b8d8fca..d72f30c29 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