Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 2fc8b64

Browse files
committed
Fix flake8 basestring complaints.
1 parent b359887 commit 2fc8b64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hyper/tls.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def init_context(cert_path=None, cert=None, cert_password=None):
122122

123123
if cert is not None:
124124
try:
125-
basestring
126-
except NameError:
125+
from builtins import basestring
126+
except ImportError:
127127
basestring = (str, bytes)
128128
if not isinstance(cert, basestring):
129129
context.load_cert_chain(cert[0], cert[1], cert_password)

0 commit comments

Comments
 (0)