瀏覽代碼

[adultswim] Fix extraction on python 2.6

Sergey M․ 10 年之前
父節點
當前提交
eb387896e9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      youtube_dl/extractor/adultswim.py

+ 1 - 1
youtube_dl/extractor/adultswim.py

@@ -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')