summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-01-29 16:04:15 +0100
committerRemita Amine <remitamine@gmail.com>2017-01-29 16:04:15 +0100
commit4719419951ced20e42cddb26b437908ba636debb (patch)
treea40f8aa81e6fea2a76df49a74a2b9e14e1fb5290
parentc2d9c25f818da2e0e622b475ffc714f35df0887c (diff)
downloadyoutube-dl-4719419951ced20e42cddb26b437908ba636debb.tar.gz
youtube-dl-4719419951ced20e42cddb26b437908ba636debb.tar.xz
youtube-dl-4719419951ced20e42cddb26b437908ba636debb.zip
[itv] fix extraction in python 2.6
-rw-r--r--youtube_dl/extractor/itv.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/itv.py b/youtube_dl/extractor/itv.py
index 0328c7093..b0d860452 100644
--- a/youtube_dl/extractor/itv.py
+++ b/youtube_dl/extractor/itv.py
@@ -6,7 +6,10 @@ import xml.etree.ElementTree as etree
 import json
 
 from .common import InfoExtractor
-from ..compat import compat_str
+from ..compat import (
+    compat_str,
+    compat_etree_register_namespace,
+)
 from ..utils import (
     extract_attributes,
     xpath_with_ns,
@@ -47,7 +50,7 @@ class ITVIE(InfoExtractor):
             'com': 'http://schemas.itv.com/2009/05/Common',
         }
         for ns, full_ns in ns_map.items():
-            etree.register_namespace(ns, full_ns)
+            compat_etree_register_namespace(ns, full_ns)
 
         def _add_ns(name):
             return xpath_with_ns(name, ns_map)