Browse Source

don't use selection by attribute

Peter Rowlands 9 years ago
parent
commit
93fdb14177
1 changed files with 4 additions and 2 deletions
  1. 4 2
      youtube_dl/extractor/afreecatv.py

+ 4 - 2
youtube_dl/extractor/afreecatv.py

@@ -95,8 +95,10 @@ class AfreecaTVIE(InfoExtractor):
         thumbnail = xpath_text(video_xml, './track/titleImage', 'thumbnail')
         thumbnail = xpath_text(video_xml, './track/titleImage', 'thumbnail')
 
 
         entries = []
         entries = []
-        for i, video_file in enumerate(video_xml.findall('./track/video/file[@key]')):
-            video_key = self.parse_video_key(video_file.get('key'))
+        for i, video_file in enumerate(video_xml.findall('./track/video/file')):
+            video_key = self.parse_video_key(video_file.get('key', ''))
+            if not video_key:
+                continue
             entries.append({
             entries.append({
                 'id': '%s_%s' % (video_id, video_key.get('part', i + 1)),
                 'id': '%s_%s' % (video_id, video_key.get('part', i + 1)),
                 'title': title,
                 'title': title,