mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[itv] fix extraction in python 2.6
This commit is contained in:
parent
c2d9c25f81
commit
4719419951
1 changed files with 5 additions and 2 deletions
|
@ -6,7 +6,10 @@ import xml.etree.ElementTree as etree
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import compat_str
|
from ..compat import (
|
||||||
|
compat_str,
|
||||||
|
compat_etree_register_namespace,
|
||||||
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
extract_attributes,
|
extract_attributes,
|
||||||
xpath_with_ns,
|
xpath_with_ns,
|
||||||
|
@ -47,7 +50,7 @@ class ITVIE(InfoExtractor):
|
||||||
'com': 'http://schemas.itv.com/2009/05/Common',
|
'com': 'http://schemas.itv.com/2009/05/Common',
|
||||||
}
|
}
|
||||||
for ns, full_ns in ns_map.items():
|
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):
|
def _add_ns(name):
|
||||||
return xpath_with_ns(name, ns_map)
|
return xpath_with_ns(name, ns_map)
|
||||||
|
|
Loading…
Reference in a new issue