diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-01 15:25:33 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-01 15:25:33 +0100 |
commit | 654bd52f5847dc3f1604611f7f1ca3beafee7046 (patch) | |
tree | c558f5bf23aeadcb2a2925a8a274047e701e5ae1 /youtube_dl/extractor/teletask.py | |
parent | a9551e90207a2bb2ef8f35279fc525846e21cbe4 (diff) |
[teletask] Fix test definition
Diffstat (limited to 'youtube_dl/extractor/teletask.py')
-rw-r--r-- | youtube_dl/extractor/teletask.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teletask.py b/youtube_dl/extractor/teletask.py index e54145105..b9e2ef8ca 100644 --- a/youtube_dl/extractor/teletask.py +++ b/youtube_dl/extractor/teletask.py @@ -11,6 +11,7 @@ class TeleTaskIE(InfoExtractor): _TEST = { 'url': 'http://www.tele-task.de/archive/video/html5/26168/', 'info_dict': { + 'id': '26168', 'title': 'Duplicate Detection', }, 'playlist': [{ @@ -34,7 +35,6 @@ class TeleTaskIE(InfoExtractor): def _real_extract(self, url): lecture_id = self._match_id(url) - webpage = self._download_webpage(url, lecture_id) title = self._html_search_regex( |