Bläddra i källkod

[FunnyOrDie] simplify

pulpe 11 år sedan
förälder
incheckning
d0111a7409
1 ändrade filer med 3 tillägg och 7 borttagningar
  1. 3 7
      youtube_dl/extractor/funnyordie.py

+ 3 - 7
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'),
         }