mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 17:12:36 +00:00
Fall back to urllib instead of urllib2 for Python 3 urllib.parse
This commit is contained in:
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
Block a user