Browse Source

[utils] Apply 2.6 xpath craziness

This fixes ARD on 2.6
totalwebcasting
Philipp Hagemeister 10 years ago
parent
commit
d74bebd502
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/utils.py

+ 3
- 0
youtube_dl/utils.py View File

@ -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:


Loading…
Cancel
Save