From 9fdece5d340f24ab3c16770f71fd26943f4996c2 Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Tue, 28 Oct 2014 10:44:47 +0100 Subject: [PATCH] [srmediathek] Choose variable name more wisely --- youtube_dl/extractor/srmediathek.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/srmediathek.py b/youtube_dl/extractor/srmediathek.py index d92d14d65..666a7dcc8 100644 --- a/youtube_dl/extractor/srmediathek.py +++ b/youtube_dl/extractor/srmediathek.py @@ -26,9 +26,9 @@ class SRMediathekIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) - urls = json.loads(js_to_json(self._search_regex( + murls = json.loads(js_to_json(self._search_regex( r'var mediaURLs\s*=\s*(.*?);\n', webpage, 'video URLs'))) - formats = [{'url': url} for url in urls] + formats = [{'url': murl} for murl in murls] self._sort_formats(formats) title = json.loads(js_to_json(self._search_regex(