From 03936f6e6ddf222a9391193f15b3b6e0b75983cd Mon Sep 17 00:00:00 2001 From: dinesh Date: Sun, 26 Oct 2014 13:47:41 +0530 Subject: [PATCH] [BelgianNational] corrected indentation --- youtube_dl/extractor/belgiannational.py | 67 ++++++++++++------------- 1 file changed, 33 insertions(+), 34 deletions(-) diff --git a/youtube_dl/extractor/belgiannational.py b/youtube_dl/extractor/belgiannational.py index 2367d1f2b..cabff50f2 100644 --- a/youtube_dl/extractor/belgiannational.py +++ b/youtube_dl/extractor/belgiannational.py @@ -9,40 +9,39 @@ from ..utils import int_or_none class BelgianNationalIE(InfoExtractor): _VALID_URL = r'http://(?:deredactie|sporza|cobra)\.be/cm/(.*)/(?P[^\']+)' _TESTS = [ - # deredactie.be - { - 'url': 'http://deredactie.be/cm/vrtnieuws/videozone/programmas/journaal/EP_141025_JOL', - 'md5': '4cebde1eb60a53782d4f3992cbd46ec8', - 'info_dict': { - 'id': 'EP_141025_JOL', - 'title': 'Het journaal L - 25/10/14', - 'ext': 'mp4', - 'duration': 929, - } - }, - # sporza.be - { - 'url': 'http://sporza.be/cm/sporza/videozone/programmas/extratime/EP_141020_Extra_time', - 'md5': '11f53088da9bf8e7cfc42456697953ff', - 'info_dict': { - 'id': 'EP_141020_Extra_time', - 'title': 'Bekijk Extra Time van 20 oktober', - 'ext': 'mp4', - 'duration': 3238, - } - - }, - # cobra.be - { - 'url': 'http://cobra.be/cm/cobra/videozone/rubriek/film-videozone/141022-mv-ellis-cafecorsari', - 'md5': '78a2b060a5083c4f055449a72477409d', - 'info_dict': { - 'id': '141022-mv-ellis-cafecorsari', - 'title': 'Bret Easton Ellis in Café Corsari', - 'ext': 'mp4', - 'duration': 661, - } - } + # deredactie.be + { + 'url': 'http://deredactie.be/cm/vrtnieuws/videozone/programmas/journaal/EP_141025_JOL', + 'md5': '4cebde1eb60a53782d4f3992cbd46ec8', + 'info_dict': { + 'id': 'EP_141025_JOL', + 'title': 'Het journaal L - 25/10/14', + 'ext': 'mp4', + 'duration': 929, + } + }, + # sporza.be + { + 'url': 'http://sporza.be/cm/sporza/videozone/programmas/extratime/EP_141020_Extra_time', + 'md5': '11f53088da9bf8e7cfc42456697953ff', + 'info_dict': { + 'id': 'EP_141020_Extra_time', + 'title': 'Bekijk Extra Time van 20 oktober', + 'ext': 'mp4', + 'duration': 3238, + } + }, + # cobra.be + { + 'url': 'http://cobra.be/cm/cobra/videozone/rubriek/film-videozone/141022-mv-ellis-cafecorsari', + 'md5': '78a2b060a5083c4f055449a72477409d', + 'info_dict': { + 'id': '141022-mv-ellis-cafecorsari', + 'title': 'Bret Easton Ellis in Café Corsari', + 'ext': 'mp4', + 'duration': 661, + } + }, ] def _real_extract(self, url):