From: Philipp Hagemeister Date: Thu, 11 Dec 2014 09:08:17 +0000 (+0100) Subject: [youtube] Fix imports X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=4bb4a18876f5489db77365528638da8d46890a38;p=youtube-dl [youtube] Fix imports --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 42441d9fa..6216028cf 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -14,23 +14,24 @@ from .common import InfoExtractor, SearchInfoExtractor from .subtitles import SubtitlesInfoExtractor from ..jsinterp import JSInterpreter from ..swfinterp import SWFInterpreter -from ..utils import ( +from ..compat import ( compat_chr, compat_parse_qs, compat_urllib_parse, compat_urllib_request, compat_urlparse, compat_str, - +) +from ..utils import ( clean_html, - get_element_by_id, - get_element_by_attribute, ExtractorError, + get_element_by_attribute, + get_element_by_id, int_or_none, OnDemandPagedList, + orderedSet, unescapeHTML, unified_strdate, - orderedSet, uppercase_escape, )