diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-03-06 02:48:27 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-03-06 02:48:27 +0800 |
commit | 5c7495a19429e3b27c003a4bd5bb96ed1e3a4932 (patch) | |
tree | 65c99c7d90904684299014155f216735b5958b1a | |
parent | 5ee6fc974e617ce2f8d9d62c416091a1daa6d802 (diff) |
[sohu] Correct wrong imports
-rw-r--r-- | youtube_dl/extractor/sohu.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/sohu.py b/youtube_dl/extractor/sohu.py index ef7ec51df..335e84fab 100644 --- 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): |