diff options
author | Steve Baker <sbaker@redhat.com> | 2022-02-18 12:50:30 +1300 |
---|---|---|
committer | Steve Baker <sbaker@redhat.com> | 2022-02-18 13:03:24 +1300 |
commit | d21144fd2d40f147800f812f48d7c285b1296b99 (patch) | |
tree | 27c496a8b7387f86a17a78b28c3eddd8b5fd1823 /tox.ini | |
parent | 358ee55641a9bc6a8dd3ac1378cafde6148591aa (diff) | |
download | ironic-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)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |