Browse Source

[hrti] Don't redefine variable in list comprehension

Jaime Marquínez Ferrándiz 9 years ago
parent
commit
4cb13d0d6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/hrti.py

+ 1 - 1
youtube_dl/extractor/hrti.py

@@ -197,6 +197,6 @@ class HRTiPlaylistIE(HRTiBaseIE):
             response, lambda x: x['video_listings'][0]['alternatives'][0]['list'],
             list) or [video['id'] for video in response.get('videos', []) if video.get('id')]
 
-        entries = [self.url_result('hrti:%s' % category_id) for category_id in video_ids]
+        entries = [self.url_result('hrti:%s' % video_id) for video_id in video_ids]
 
         return self.playlist_result(entries, category_id, display_id)