1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-23 08:54:33 +01:00

flake8 fixes, add whitspace around arithmetic operator and remove newlines at the end

This commit is contained in:
Stefan 2020-04-09 16:58:54 +02:00
parent 6cbd8de420
commit 29f257fa25

View File

@ -26,7 +26,7 @@ class PlayerGlobeWienIE(InfoExtractor):
formats = []
title = self._html_search_regex(r'<title>(.+?)</title>', 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,
}