This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
Fall back to urllib instead of urllib2 for Python 3 urllib.parse
rtmp_test
Philipp Hagemeister
12 years ago
parent
89fb51dd2d
commit
da779b4924
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
youtube_dl/utils.py
+ 1
- 1
youtube_dl/utils.py
View File
@ -43,7 +43,7 @@ except ImportError: # Python 2
try
:
import
urllib.parse
as
compat_urllib_parse
except
ImportError
:
# Python 2
import
urllib
2
as
compat_urllib_parse
import
urllib
as
compat_urllib_parse
try
:
import
http.cookiejar
as
compat_cookiejar
Write
Preview
Loading…
Cancel
Save