mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 03:10:38 +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