From 4cb13d0d6af20906f973f0b281f9efba4bc65d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sat, 2 Jul 2016 23:02:14 +0200 Subject: [PATCH] [hrti] Don't redefine variable in list comprehension --- youtube_dl/extractor/hrti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/hrti.py b/youtube_dl/extractor/hrti.py index 4b346f712..656ce6d05 100644 --- a/youtube_dl/extractor/hrti.py +++ b/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)