mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 20:07:08 -05:00 
			
		
		
		
	[redtube] pep8
This commit is contained in:
		@@ -14,7 +14,7 @@ class RedTubeIE(InfoExtractor):
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    def _real_extract(self,url):
 | 
			
		||||
    def _real_extract(self, url):
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
 | 
			
		||||
        video_id = mobj.group('id')
 | 
			
		||||
@@ -23,15 +23,16 @@ class RedTubeIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        self.report_extraction(video_id)
 | 
			
		||||
 | 
			
		||||
        video_url = self._html_search_regex(r'<source src="(.+?)" type="video/mp4">',
 | 
			
		||||
            webpage, u'video URL')
 | 
			
		||||
        video_url = self._html_search_regex(
 | 
			
		||||
            r'<source src="(.+?)" type="video/mp4">', webpage, u'video URL')
 | 
			
		||||
 | 
			
		||||
        video_title = self._html_search_regex('<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
 | 
			
		||||
        video_title = self._html_search_regex(
 | 
			
		||||
            r'<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
 | 
			
		||||
            webpage, u'title')
 | 
			
		||||
 | 
			
		||||
        return [{
 | 
			
		||||
        return {
 | 
			
		||||
            'id':       video_id,
 | 
			
		||||
            'url':      video_url,
 | 
			
		||||
            'ext':      video_extension,
 | 
			
		||||
            'title':    video_title,
 | 
			
		||||
        }]
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user