diff options
author | Shadab Zafar <dufferzafar0@gmail.com> | 2016-05-31 00:49:44 +0530 |
---|---|---|
committer | Shadab Zafar <dufferzafar0@gmail.com> | 2016-05-31 00:49:44 +0530 |
commit | 42f16d5d403667609416427d823e6793a5cc1640 (patch) | |
tree | 59b6f6529facf174b7941d9054aad993e9bda188 | |
parent | 769e20f2a9749db802b544531a4ce71575d3a90a (diff) | |
download | mitmproxy-42f16d5d403667609416427d823e6793a5cc1640.tar.gz mitmproxy-42f16d5d403667609416427d823e6793a5cc1640.tar.bz2 mitmproxy-42f16d5d403667609416427d823e6793a5cc1640.zip |
Py3: Use six.string_types instead of basestring
-rw-r--r-- | pathod/language/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pathod/language/base.py b/pathod/language/base.py index 97111ed6..1f4edb6f 100644 --- a/pathod/language/base.py +++ b/pathod/language/base.py @@ -3,6 +3,7 @@ import os import abc import pyparsing as pp +import six from six.moves import reduce from netlib.utils import escaped_str_to_bytes, bytes_to_escaped_str from netlib import human @@ -341,7 +342,7 @@ class OptionsOrValue(_Component): # it to be canonical. The user can specify a different case by using a # string value literal. self.option_used = False - if isinstance(value, basestring): + if isinstance(value, six.string_types): for i in self.options: # Find the exact option value in a case-insensitive way if i.lower() == value.lower(): |