diff options
author | Georg Jaehnig <georg@jaehnig.org> | 2014-05-30 16:39:24 +0200 |
---|---|---|
committer | Georg Jaehnig <georg@jaehnig.org> | 2014-05-30 16:39:24 +0200 |
commit | 4ffeca4ea29fe75821c8de5fbaf8d8f585f2dbb4 (patch) | |
tree | cc6e5f1c5ef32cf291004fdc8e5a9c0e1c0cc719 | |
parent | 211fd6c674f9294d3a1d22b0e7f519dcec0303e5 (diff) |
cleanup
-rw-r--r-- | youtube_dl/extractor/spiegeltv.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/spiegeltv.py b/youtube_dl/extractor/spiegeltv.py index acb85ee64..e8f49bc52 100644 --- a/youtube_dl/extractor/spiegeltv.py +++ b/youtube_dl/extractor/spiegeltv.py @@ -23,7 +23,6 @@ class SpiegeltvIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - # TODO more code goes here, for example ... webpage = self._download_webpage(url, video_id) title = self._html_search_regex(r'<h1.*?>(.*?)</h1>', webpage, 'title') |