From 70328330117e3c4c0e413b8c41bfd9e8e55fc62a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Sat, 6 Feb 2016 21:37:28 +0100 Subject: [PATCH] [iprima] Follow pep8 --- youtube_dl/extractor/iprima.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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') -- 2.30.2