[FunnyOrDie] simplify
authorpulpe <Pulpan3@gmail.com>
Tue, 6 May 2014 08:19:13 +0000 (10:19 +0200)
committerpulpe <Pulpan3@gmail.com>
Tue, 6 May 2014 08:19:13 +0000 (10:19 +0200)
youtube_dl/extractor/funnyordie.py

index 1b93c104fd0847d8580ec89f974241e83c40c1f7..cdd3baf80065c0bc89f2116dfedbc30f763b94fe 100644 (file)
@@ -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'),
         }