projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ee6fc9
)
[sohu] Correct wrong imports
author
Yen Chi Hsuan
<yan12125@gmail.com>
Thu, 5 Mar 2015 18:48:27 +0000
(
02:48
+0800)
committer
Yen Chi Hsuan
<yan12125@gmail.com>
Thu, 5 Mar 2015 18:48:27 +0000
(
02:48
+0800)
youtube_dl/extractor/sohu.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/sohu.py
b/youtube_dl/extractor/sohu.py
index ef7ec51df4c857ca5cb4628c850b9f6f227d4587..335e84fab7b990019aaf1063fd2fd6ea721bb465 100644
(file)
--- a/
youtube_dl/extractor/sohu.py
+++ b/
youtube_dl/extractor/sohu.py
@@
-4,8
+4,10
@@
from __future__ import unicode_literals
import re
from .common import InfoExtractor
-from ..utils import compat_str
-from ..compat import compat_urllib_request
+from ..compat import (
+ compat_str,
+ compat_urllib_request
+)
class SohuIE(InfoExtractor):