1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-01 22:46:09 +02:00

[adultswim] Fix extraction on python 2.6

This commit is contained in:
Sergey M․ 2015-09-06 02:24:14 +06:00
parent 8df5ae15d1
commit eb387896e9

View File

@ -156,7 +156,7 @@ class AdultSwimIE(InfoExtractor):
xpath_text(idoc, './/trt', 'segment duration').strip())
formats = []
file_els = idoc.findall('.//files/file')
file_els = idoc.findall('.//files/file') or idoc.findall('./files/file')
for file_el in file_els:
bitrate = file_el.attrib.get('bitrate')