projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f37a95
)
Import from the correct module
author
Philipp Hagemeister
<phihag@phihag.de>
Tue, 27 Nov 2012 23:17:59 +0000
(
00:17
+0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Tue, 27 Nov 2012 23:17:59 +0000
(
00:17
+0100)
youtube_dl/utils.py
patch
|
blob
|
history
diff --git
a/youtube_dl/utils.py
b/youtube_dl/utils.py
index a27ac77dd65fe6277f21673d8bc3655d719f4031..41e6b85509be30a723d2d50e5a95a4cc5571333d 100644
(file)
--- a/
youtube_dl/utils.py
+++ b/
youtube_dl/utils.py
@@
-47,7
+47,7
@@
except ImportError: # Python 2
import httplib as compat_html_client
try:
- from urllib.parse
.parse_qs
import parse_qs as compat_parse_qs
+ from urllib.parse import parse_qs as compat_parse_qs
except ImportError: # Python 2
from urlparse import parse_qs as compat_parse_qs