Skip to content

Commit a856866

Browse files
committed
Fix the Python 3 urllib import.
1 parent f0b0272 commit a856866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coinbase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
oauth2_supported = False
4242

4343
try:
44-
from urllib import urlsplit, urlunsplit, quote
44+
from urllib.parse import urlsplit, urlunsplit, quote
4545
except ImportError:
4646
from urllib import quote
4747
from urlparse import urlsplit, urlunsplit

0 commit comments

Comments
 (0)