about summary refs log tree commit diff
path: root/youtube_dl/extractor/mdr.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-08-03 12:00:08 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-08-03 12:00:08 +0200
commit47a8b7c14a085ce558db3b5a85ded850cd5df642 (patch)
treed4cfe9fba1becad905b541b666fcd83d238286fb /youtube_dl/extractor/mdr.py
parent2a04d2c799153778b4652a701e83f1d6d211fbf1 (diff)
downloadyoutube-dl-47a8b7c14a085ce558db3b5a85ded850cd5df642.tar.gz
youtube-dl-47a8b7c14a085ce558db3b5a85ded850cd5df642.tar.xz
youtube-dl-47a8b7c14a085ce558db3b5a85ded850cd5df642.zip
[mdr] Change XPath to make it work in python 2.6 (fixes #6443)
The 'progressiveDownloadUrl' element is a direct child, so they should be equivalent.
Diffstat (limited to 'youtube_dl/extractor/mdr.py')
-rw-r--r--youtube_dl/extractor/mdr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/mdr.py b/youtube_dl/extractor/mdr.py
index 5fdd19027..fc7499958 100644
--- a/youtube_dl/extractor/mdr.py
+++ b/youtube_dl/extractor/mdr.py
@@ -29,7 +29,7 @@ class MDRIE(InfoExtractor):
         doc = self._download_xml(domain + xmlurl, video_id)
         formats = []
         for a in doc.findall('./assets/asset'):
-            url_el = a.find('.//progressiveDownloadUrl')
+            url_el = a.find('./progressiveDownloadUrl')
             if url_el is None:
                 continue
             abr = int(a.find('bitrateAudio').text) // 1000