mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[extractor/common] Correct typo
This commit is contained in:
parent
3524cc25ca
commit
daebaab692
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None):
|
|||
elif line.startswith('#') or not line.strip():
|
||||
continue
|
||||
else:
|
||||
if last_info is none:
|
||||
if last_info is None:
|
||||
formats.append({'url': line})
|
||||
continue
|
||||
tbr = int_or_none(last_info.get('BANDWIDTH'), scale=1000)
|
||||
|
|
Loading…
Reference in a new issue