mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 10:11:52 +00:00
[sohu] Correct wrong imports
This commit is contained in:
parent
5ee6fc974e
commit
5c7495a194
1 changed files with 4 additions and 2 deletions
|
@ -4,8 +4,10 @@ from __future__ import unicode_literals
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import compat_str
|
from ..compat import (
|
||||||
from ..compat import compat_urllib_request
|
compat_str,
|
||||||
|
compat_urllib_request
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class SohuIE(InfoExtractor):
|
class SohuIE(InfoExtractor):
|
||||||
|
|
Loading…
Reference in a new issue