1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 10:29:28 +00:00

[extractor/common] Correct typo

This commit is contained in:
Philipp Hagemeister 2014-08-28 13:04:49 +02:00
parent 3524cc25ca
commit daebaab692

View file

@ -664,7 +664,7 @@ class InfoExtractor(object):
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)