aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/tagesschau.py
diff options
context:
space:
mode:
authorpulpe <Pulpan3@gmail.com>2014-06-05 19:34:30 +0200
committerpulpe <Pulpan3@gmail.com>2014-06-05 19:34:30 +0200
commit6a15923b77dc610b85810a15ce8a76f6688ed5e9 (patch)
treed89be147f00fe3a52aefe1f5812970df624a93da /youtube_dl/extractor/tagesschau.py
parent7ffad0af5ab392ed5ea7ec9165fd42d012a669f5 (diff)
downloadyoutube-dl-6a15923b77dc610b85810a15ce8a76f6688ed5e9.tar.xz
[TagesschauIE] Add note to 2nd _download_webpage
Diffstat (limited to 'youtube_dl/extractor/tagesschau.py')
-rw-r--r--youtube_dl/extractor/tagesschau.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tagesschau.py b/youtube_dl/extractor/tagesschau.py
index bd935063f..fec1ff67e 100644
--- a/youtube_dl/extractor/tagesschau.py
+++ b/youtube_dl/extractor/tagesschau.py
@@ -43,7 +43,7 @@ class TagesschauIE(InfoExtractor):
webpage = self._download_webpage(url, display_id)
playerpage = self._download_webpage(
- 'http://www.tagesschau.de/multimedia/video/video%s~player_autoplay-true.html' % video_id, display_id)
+ 'http://www.tagesschau.de/multimedia/video/video%s~player_autoplay-true.html' % video_id, display_id, 'Downloading player page')
medias = re.findall(r'"(http://media.+?)", type:"video/(.+?)", quality:"(.+?)"', playerpage)