aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/redtube.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-04 11:41:57 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-04 11:41:57 +0200
commitcd214418f611f7071417df0063d115ea911705a3 (patch)
tree7bc3997cc7be718462877c3e7949ef007dd52d12 /youtube_dl/extractor/redtube.py
parentba2d9f213e3bc9ea0c65e7715702d2e89964dbe7 (diff)
downloadyoutube-dl-cd214418f611f7071417df0063d115ea911705a3.tar.xz
[redtube] pep8
Diffstat (limited to 'youtube_dl/extractor/redtube.py')
-rw-r--r--youtube_dl/extractor/redtube.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/youtube_dl/extractor/redtube.py b/youtube_dl/extractor/redtube.py
index 1d2cf1f56..bb19b898a 100644
--- a/youtube_dl/extractor/redtube.py
+++ b/youtube_dl/extractor/redtube.py
@@ -14,24 +14,25 @@ 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')
- video_extension = 'mp4'
+ video_extension = 'mp4'
webpage = self._download_webpage(url, video_id)
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,
- }]
+ }