logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: d74bebd50263a2f744595b9a54825914bc07657b
parent bf0ff93277ba36fbda70223ca7e78b5132e54ddf
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 13 Sep 2014 09:11:14 +0200

[utils] Apply 2.6 xpath craziness

This fixes ARD on 2.6

Diffstat:

Myoutube_dl/utils.py3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -305,6 +305,9 @@ def xpath_with_ns(path, ns_map): def xpath_text(node, xpath, name=None, fatal=False): + if sys.version_info < (2, 7): # Crazy 2.6 + xpath = xpath.encode('ascii') + n = node.find(xpath) if n is None: if fatal: