Add a completion script generator for the fish shell
[youtube-dl] / youtube_dl / utils.py
index 7536b3b364c5718380f9481fc5c5add87cc775a8..24778807813ec0b6303b6daf849c047b950b98e3 100644 (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: