summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-11-02 12:46:10 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-11-02 12:46:10 +0100
commiteb97f46e8bd9cb04f0fe5f8a5c13aeeaabeefef5 (patch)
tree6efa9b136275afeba569ccbd1fd699c6e2ef245d
parentc90d16cf36d8edf03f4dc923ee9dbeadca910844 (diff)
downloadyoutube-dl-eb97f46e8bd9cb04f0fe5f8a5c13aeeaabeefef5.tar.gz
youtube-dl-eb97f46e8bd9cb04f0fe5f8a5c13aeeaabeefef5.tar.xz
youtube-dl-eb97f46e8bd9cb04f0fe5f8a5c13aeeaabeefef5.zip
[mitele] Fix extraction and update test checksum (fixes #7343)
-rw-r--r--youtube_dl/extractor/mitele.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/extractor/mitele.py b/youtube_dl/extractor/mitele.py
index 3142fcde2..c595f2077 100644
--- a/youtube_dl/extractor/mitele.py
+++ b/youtube_dl/extractor/mitele.py
@@ -1,7 +1,10 @@
 from __future__ import unicode_literals
 
 from .common import InfoExtractor
-from ..compat import compat_urllib_parse
+from ..compat import (
+    compat_urllib_parse,
+    compat_urlparse,
+)
 from ..utils import (
     encode_dict,
     get_element_by_attribute,
@@ -15,7 +18,7 @@ class MiTeleIE(InfoExtractor):
 
     _TESTS = [{
         'url': 'http://www.mitele.es/programas-tv/diario-de/la-redaccion/programa-144/',
-        'md5': '757b0b66cbd7e0a97226d7d3156cb3e9',
+        'md5': '0ff1a13aebb35d9bc14081ff633dd324',
         'info_dict': {
             'id': '0NF1jJnxS1Wu3pHrmvFyw2',
             'display_id': 'programa-144',
@@ -34,6 +37,7 @@ class MiTeleIE(InfoExtractor):
 
         config_url = self._search_regex(
             r'data-config\s*=\s*"([^"]+)"', webpage, 'data config url')
+        config_url = compat_urlparse.urljoin(url, config_url)
 
         config = self._download_json(
             config_url, display_id, 'Downloading config JSON')