Typo: test_type --> text_type

This commit is contained in:
rallytime 2018-05-25 16:10:52 -04:00
parent 8877489386
commit 9e3ce39e8c
No known key found for this signature in database
GPG Key ID: E8F1A4B90D0DEA19

View File

@ -106,7 +106,7 @@ def _read_dict(cp, dictionary):
cp.add_section(section)
for key, value in keys.items():
key = cp.optionxform(six.test_type(key))
key = cp.optionxform(six.text_type(key))
if value is not None:
value = six.text_type(value)
cp.set(section, key, value)