Fall back to urllib instead of urllib2 for Python 3 urllib.parse
parent
89fb51dd2d
commit
da779b4924
|
@ -43,7 +43,7 @@ except ImportError: # Python 2
|
|||
try:
|
||||
import urllib.parse as compat_urllib_parse
|
||||
except ImportError: # Python 2
|
||||
import urllib2 as compat_urllib_parse
|
||||
import urllib as compat_urllib_parse
|
||||
|
||||
try:
|
||||
import http.cookiejar as compat_cookiejar
|
||||
|
|
Loading…
Reference in New Issue