Browse Source

[mitele] Fix on python 2.x

totalwebcasting
Jaime Marquínez Ferrándiz 10 years ago
parent
commit
2c63ccec78
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/mitele.py

+ 2
- 1
youtube_dl/extractor/mitele.py View File

@ -6,6 +6,7 @@ import json
from .common import InfoExtractor
from ..utils import (
compat_urllib_parse,
compat_urlparse,
get_element_by_attribute,
parse_duration,
strip_jsonp,
@ -43,7 +44,7 @@ class MiTeleIE(InfoExtractor):
if not domain.startswith('http'):
# only happens in telecinco.es videos
domain = 'http://' + domain
info_url = compat_urllib_parse.urljoin(
info_url = compat_urlparse.urljoin(
domain,
compat_urllib_parse.unquote(embed_data['flashvars']['host'])
)


Loading…
Cancel
Save