mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-24 11:11:54 +00:00
Fix quoting
This commit is contained in:
parent
3525025a6f
commit
ff968566a5
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class VOEIE(InfoExtractor):
|
||||||
webpage, 'title', group='title')
|
webpage, 'title', group='title')
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for fmt in ('mp4, 'hls'):
|
for fmt in ('mp4', 'hls'):
|
||||||
if fmt not in sources:
|
if fmt not in sources:
|
||||||
continue
|
continue
|
||||||
sources[fmt] = url_or_none(sources['fmt']) or url_or_none(base64.b64decode(sources['fmt']))
|
sources[fmt] = url_or_none(sources['fmt']) or url_or_none(base64.b64decode(sources['fmt']))
|
||||||
|
|
Loading…
Reference in a new issue