aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ir90tv.py
diff options
context:
space:
mode:
authorBehrooz <behrooz.abbasy@gmail.com>2015-05-08 04:32:08 +0200
committerBehrooz <behrooz.abbasy@gmail.com>2015-05-08 04:32:08 +0200
commita650110ba762b2658c64392317c1afd2a284dd3d (patch)
tree08cc968460091b1088be6566386368c82bc0b59f /youtube_dl/extractor/ir90tv.py
parent54b31d149e7be08eb7be9981a9eec398d11f17ef (diff)
downloadyoutube-dl-a650110ba762b2658c64392317c1afd2a284dd3d.tar.xz
remove print
Diffstat (limited to 'youtube_dl/extractor/ir90tv.py')
-rw-r--r--youtube_dl/extractor/ir90tv.py3
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,