diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-06 13:59:10 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-06 13:59:10 +0100 |
commit | 6591fdf51f194d4d140fb3da582361766a8ec01c (patch) | |
tree | 2f0df4411bb4a2ea718fb114b936fe5508cb81af | |
parent | 47d7c64274f9cde33daab5f54b3707ffb19d2f20 (diff) |
[tagesschau] Look at the right place for download links
-rw-r--r-- | youtube_dl/extractor/tagesschau.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tagesschau.py b/youtube_dl/extractor/tagesschau.py index aed670941..bfe07b024 100644 --- a/youtube_dl/extractor/tagesschau.py +++ b/youtube_dl/extractor/tagesschau.py @@ -70,7 +70,7 @@ class TagesschauIE(InfoExtractor): webpage, 'download links') links = re.finditer( r'<div class="button" title="(?P<title>[^"]*)"><a href="(?P<url>[^"]+)">(?P<name>.+?)</a></div>', - webpage) + download_text) formats = [] for l in links: format_id = self._search_regex( |