pep8 reformatting

This commit is contained in:
mauriziopz 2016-06-25 10:19:42 +02:00
parent c3b02b405b
commit 43f86e12c0

View File

@ -21,19 +21,24 @@ class ComingSoonITIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
title = self._og_search_title(webpage)
description = self._og_search_description(webpage)
return {
'id': video_id,
'title': title,
'description': description,
'formats': [{
'formats': [
{
'url': 'http://video.comingsoon.it/MP4/' + video_id + '.mp4',
'format': 'Standard Definition'
},{
},
{
'url': 'http://video.comingsoon.it/MP4/' + video_id + '.mp4',
'format': 'High Definition'}],
'format': 'High Definition'
}
],
'ext': 'mp4'
}
}