[youtube] Fix imports

This commit is contained in:
Philipp Hagemeister 2014-12-11 10:08:17 +01:00
parent a81bbebf44
commit 4bb4a18876
1 changed files with 6 additions and 5 deletions

View File

@ -14,23 +14,24 @@ from .common import InfoExtractor, SearchInfoExtractor
from .subtitles import SubtitlesInfoExtractor from .subtitles import SubtitlesInfoExtractor
from ..jsinterp import JSInterpreter from ..jsinterp import JSInterpreter
from ..swfinterp import SWFInterpreter from ..swfinterp import SWFInterpreter
from ..utils import ( from ..compat import (
compat_chr, compat_chr,
compat_parse_qs, compat_parse_qs,
compat_urllib_parse, compat_urllib_parse,
compat_urllib_request, compat_urllib_request,
compat_urlparse, compat_urlparse,
compat_str, compat_str,
)
from ..utils import (
clean_html, clean_html,
get_element_by_id,
get_element_by_attribute,
ExtractorError, ExtractorError,
get_element_by_attribute,
get_element_by_id,
int_or_none, int_or_none,
OnDemandPagedList, OnDemandPagedList,
orderedSet,
unescapeHTML, unescapeHTML,
unified_strdate, unified_strdate,
orderedSet,
uppercase_escape, uppercase_escape,
) )