From 29f257fa25c554cfb78c3f5d835feec29fddaf94 Mon Sep 17 00:00:00 2001 From: Stefan Date: Thu, 9 Apr 2020 16:58:54 +0200 Subject: [PATCH] flake8 fixes, add whitspace around arithmetic operator and remove newlines at the end --- youtube_dl/extractor/playerglobewien.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/youtube_dl/extractor/playerglobewien.py b/youtube_dl/extractor/playerglobewien.py index b5c76e953..5e0de6ba5 100644 --- a/youtube_dl/extractor/playerglobewien.py +++ b/youtube_dl/extractor/playerglobewien.py @@ -26,7 +26,7 @@ class PlayerGlobeWienIE(InfoExtractor): formats = [] title = self._html_search_regex(r'(.+?)', webpage, 'title') - stream_url = self._download_webpage("https://player.globe.wien/api/playout?vodId="+video_id, video_id) + stream_url = self._download_webpage("https://player.globe.wien/api/playout?vodId=" + video_id, video_id) hls_url = self._parse_json(stream_url, video_id)['streamUrl']['hls'] @@ -39,4 +39,3 @@ class PlayerGlobeWienIE(InfoExtractor): 'title': title, 'formats': formats, } -