projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2d9c25
)
[itv] fix extraction in python 2.6
author
Remita Amine
<remitamine@gmail.com>
Sun, 29 Jan 2017 15:04:15 +0000
(16:04 +0100)
committer
Remita Amine
<remitamine@gmail.com>
Sun, 29 Jan 2017 15:04:15 +0000
(16:04 +0100)
youtube_dl/extractor/itv.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/itv.py
b/youtube_dl/extractor/itv.py
index 0328c7093fc0fded9d1fec62fa7956015ac7970d..b0d8604526abc29b4b0a09eb59068561f17312a8 100644
(file)
--- 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)