From d0111a7409e4cc071beee664d6deacbeff6ffa83 Mon Sep 17 00:00:00 2001 From: pulpe Date: Tue, 6 May 2014 10:19:13 +0200 Subject: [PATCH] [FunnyOrDie] simplify --- youtube_dl/extractor/funnyordie.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index 1b93c104f..cdd3baf80 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -43,16 +43,12 @@ class FunnyOrDieIE(InfoExtractor): post_json = self._search_regex( r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details') post = json.loads(post_json) - title = post['name'] - description = post.get('description') - thumbnail = post.get('picture') - return { 'id': video_id, 'url': video_url, 'ext': 'mp4', - 'title': title, - 'description': description, - 'thumbnail': thumbnail, + 'title': post['name'], + 'description': post.get('description'), + 'thumbnail': post.get('picture'), } -- 2.30.2