mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 16:03:16 +00:00
[urplay] fix typo and check with flake8
This commit is contained in:
parent
ab47b6e881
commit
4d86d2008e
|
@ -22,7 +22,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
urplayer_data = self._parse_json(self._search_regex(
|
urplayer_data = self._parse_json(self._search_regex(
|
||||||
r'urPlayer.init\(({.+?})\);', webpage, 'urplayer data'), video_id)
|
r'urPlayer\.init\(({.+?})\);', webpage, 'urplayer data'), video_id)
|
||||||
host = self._download_json('http://streaming-loadbalancer.ur.se/loadbalancer.json', video_id)['redirect']
|
host = self._download_json('http://streaming-loadbalancer.ur.se/loadbalancer.json', video_id)['redirect']
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
|
Loading…
Reference in a new issue