From ed110ce3b272f68e37dcdd836d4fea75323514a2 Mon Sep 17 00:00:00 2001 From: midas02 Date: Tue, 9 May 2017 20:00:36 +0200 Subject: [PATCH] Some syntax fixes --- youtube_dl/extractor/medialaan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/medialaan.py b/youtube_dl/extractor/medialaan.py index 93e68c0c3..fc8f2550b 100644 --- a/youtube_dl/extractor/medialaan.py +++ b/youtube_dl/extractor/medialaan.py @@ -162,7 +162,7 @@ class MedialaanIE(InfoExtractor): video_id, transform_source=lambda s: '[%s]' % s, fatal=False) if player: video = player[-1] - if video['videoUrl'] in ('http','https'): + if video['videoUrl'] in ('http', 'https'): return self.url_result(video['url'], MedialaanIE.ie_key()) info = { 'id': video_id,