diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-07-08 02:12:20 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-07-08 02:12:20 +0200 |
commit | 20c3893f0ea7c341ed015a15cec951ab4f7c8748 (patch) | |
tree | 0cc75c72b4132846ace13ec5f2216b7801524b69 /youtube_dl/extractor/ard.py | |
parent | 29293c1e09eb09f2b296adf79a66db0de34f25e8 (diff) |
Do not redefine variables in list comprehensions
Diffstat (limited to 'youtube_dl/extractor/ard.py')
-rw-r--r-- | youtube_dl/extractor/ard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py index 5793a4129..dbf8eed99 100644 --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -32,7 +32,7 @@ class ARDIE(InfoExtractor): # determine title and media streams from webpage html = self._download_webpage(url, video_id) title = re.search(self._TITLE, html).group('title') - streams = [m.groupdict() for m in re.finditer(self._MEDIA_STREAM, html)] + streams = [mo.groupdict() for mo in re.finditer(self._MEDIA_STREAM, html)] if not streams: assert '"fsk"' in html raise ExtractorError(u'This video is only available after 8:00 pm') |