diff options
author | Behrooz <behrooz.abbasy@gmail.com> | 2015-05-08 04:32:08 +0200 |
---|---|---|
committer | Behrooz <behrooz.abbasy@gmail.com> | 2015-05-08 04:32:08 +0200 |
commit | a650110ba762b2658c64392317c1afd2a284dd3d (patch) | |
tree | 08cc968460091b1088be6566386368c82bc0b59f | |
parent | 54b31d149e7be08eb7be9981a9eec398d11f17ef (diff) |
remove print
-rw-r--r-- | youtube_dl/extractor/ir90tv.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/youtube_dl/extractor/ir90tv.py b/youtube_dl/extractor/ir90tv.py index 3a3cb4887..b79529b1b 100644 --- a/youtube_dl/extractor/ir90tv.py +++ b/youtube_dl/extractor/ir90tv.py @@ -21,7 +21,6 @@ class Ir90TvIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) - # TODO more code goes here, for example ... title = self._html_search_regex( r'<title>\n90tv.ir :: (.*?)</title>', webpage, 'title') @@ -29,8 +28,6 @@ class Ir90TvIE(InfoExtractor): r'<source[^>]+src="([^"]+)"', webpage, 'video url') thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url') - print thumbnail - return { 'url': video_url, |