diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-08-21 13:04:25 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-08-21 13:04:25 +0800 |
commit | 9eb4ab6ad915a777b6f7d7b39d03d05d7d31cd24 (patch) | |
tree | ad615bd6e5984294a53c4493f5fd5555c91e8863 /youtube_dl/extractor/rtl2.py | |
parent | 4932a817a0c2375df14d66c9ac86cfa28988327d (diff) |
[rtl2] Remove an unused line
Diffstat (limited to 'youtube_dl/extractor/rtl2.py')
-rw-r--r-- | youtube_dl/extractor/rtl2.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rtl2.py b/youtube_dl/extractor/rtl2.py index e9589449e..9e0c6890e 100644 --- a/youtube_dl/extractor/rtl2.py +++ b/youtube_dl/extractor/rtl2.py @@ -43,7 +43,6 @@ class RTL2IE(InfoExtractor): vivi_id = self._html_search_regex( r'vivi_id\s*:\s*([0-9]+)', webpage, 'vivi_id') info_url = 'http://www.rtl2.de/video/php/get_video.php?vico_id=' + vico_id + '&vivi_id=' + vivi_id - webpage = self._download_webpage(info_url, '') info = self._download_json(info_url, video_id) video_info = info['video'] |