youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit dc4fe5c6d713ac09cd35f8b8dbfbe46a67a67f10
parent 566bda51f2d943d58fbe37d88ea0fceb8ddefea8
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Mon,  1 Feb 2016 05:32:28 +0800

[allocine] Use xpath_element

Diffstat:
Myoutube_dl/extractor/allocine.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/allocine.py b/youtube_dl/extractor/allocine.py @@ -9,6 +9,7 @@ from ..compat import compat_str from ..utils import ( qualities, unescapeHTML, + xpath_element, ) @@ -71,7 +72,7 @@ class AllocineIE(InfoExtractor): xml = self._download_xml('http://www.allocine.fr/ws/AcVisiondataV4.ashx?media=%s' % video_id, display_id) - video = xml.find('./AcVisionVideo').attrib + video = xpath_element(xml, './/AcVisionVideo').attrib quality = qualities(['ld', 'md', 'hd']) formats = []