1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-04 20:01:34 +02:00

[sohu] Correct wrong imports

This commit is contained in:
Yen Chi Hsuan 2015-03-06 02:48:27 +08:00
parent 5ee6fc974e
commit 5c7495a194

View File

@ -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):