aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ir90tv.py
diff options
context:
space:
mode:
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,