From: Jaime Marquínez Ferrándiz Date: Sat, 6 Feb 2016 20:37:28 +0000 (+0100) Subject: [iprima] Follow pep8 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=70328330117e3c4c0e413b8c41bfd9e8e55fc62a [iprima] Follow pep8 --- diff --git a/youtube_dl/extractor/iprima.py b/youtube_dl/extractor/iprima.py index 093a7e551..d922f905a 100644 --- a/youtube_dl/extractor/iprima.py +++ b/youtube_dl/extractor/iprima.py @@ -37,7 +37,8 @@ class IPrimaIE(InfoExtractor): 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')