1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 12:41:20 +02:00

[iprima] Follow pep8

This commit is contained in:
Jaime Marquínez Ferrándiz 2016-02-06 21:37:28 +01:00
parent f406c78785
commit 7032833011

View File

@ -37,7 +37,8 @@ def _real_extract(self, url):
video_id = self._search_regex(r'data-product="([^"]+)">', webpage, 'real id')
req = sanitized_Request('http://play.iprima.cz/prehravac/init?_infuse=1'
req = sanitized_Request(
'http://play.iprima.cz/prehravac/init?_infuse=1'
'&_ts=%s&productId=%s' % (round(time.time()), 'p22201'))
req.add_header('Referer', url)
playerpage = self._download_webpage(req, video_id, note='Downloading player')