Browse Source

[youtube] Fix imports

master
Philipp Hagemeister 10 years ago
parent
commit
4bb4a18876
1 changed files with 6 additions and 5 deletions
  1. 11
      youtube_dl/extractor/youtube.py

11
youtube_dl/extractor/youtube.py

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

Loading…
Cancel
Save