mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	remove print
This commit is contained in:
		@@ -21,7 +21,6 @@ class Ir90TvIE(InfoExtractor):
 | 
				
			|||||||
        video_id = self._match_id(url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # TODO more code goes here, for example ...
 | 
					 | 
				
			||||||
        title = self._html_search_regex(
 | 
					        title = self._html_search_regex(
 | 
				
			||||||
            r'<title>\n90tv.ir :: (.*?)</title>', webpage, 'title')
 | 
					            r'<title>\n90tv.ir :: (.*?)</title>', webpage, 'title')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -29,8 +28,6 @@ class Ir90TvIE(InfoExtractor):
 | 
				
			|||||||
            r'<source[^>]+src="([^"]+)"', webpage, 'video url')
 | 
					            r'<source[^>]+src="([^"]+)"', webpage, 'video url')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url')
 | 
					        thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url')
 | 
				
			||||||
        print thumbnail
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            'url': video_url,
 | 
					            'url': video_url,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user