From bacb5e4f440a7ac3997282c3603032e575bb518b Mon Sep 17 00:00:00 2001 From: Pornophage Date: Sat, 25 Jan 2014 02:34:08 +0100 Subject: [PATCH] Minor fixes Remove empty description Set correct md5 test --- youtube_dl/extractor/cliphunter.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/youtube_dl/extractor/cliphunter.py b/youtube_dl/extractor/cliphunter.py index 9c90e2f98..2d8c09630 100644 --- a/youtube_dl/extractor/cliphunter.py +++ b/youtube_dl/extractor/cliphunter.py @@ -32,12 +32,11 @@ class CliphunterIE(InfoExtractor): _TESTS = [{ u'url': u'http://www.cliphunter.com/w/1012420/Fun_Jynx_Maze_solo', u'file': u'1012420.flv', - u'md5': u'49f72e2fd2977e6e518be9836dcf861e', + u'md5': u'15e7740f30428abf70f4223478dc1225', u'info_dict': { - u"title": u"Fun Jynx Maze solo", + u'title': u'Fun Jynx Maze solo', } - }, - ] + }] def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) @@ -65,5 +64,4 @@ class CliphunterIE(InfoExtractor): 'id': video_id, 'title': video_title, 'formats': formats, - 'description': '', } -- 2.30.2