logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: daebaab692be24805451b90f848ec5d5e7d3bb8d
parent 3524cc25cad5bb9c717a695c796a24ce3fe2d6f3
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 28 Aug 2014 13:04:49 +0200

[extractor/common] Correct typo

Diffstat:

Myoutube_dl/extractor/common.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -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)