aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/funnyordie.py
diff options
context:
space:
mode:
authorpulpe <Pulpan3@gmail.com>2014-05-06 10:19:13 +0200
committerpulpe <Pulpan3@gmail.com>2014-05-06 10:19:13 +0200
commitd0111a7409e4cc071beee664d6deacbeff6ffa83 (patch)
treed14a5d8774e7bc338f1136bcbd1b194d2380b95d /youtube_dl/extractor/funnyordie.py
parentaab8874c55803a12be3299fe4ba890c2de264d68 (diff)
downloadyoutube-dl-d0111a7409e4cc071beee664d6deacbeff6ffa83.zip
youtube-dl-d0111a7409e4cc071beee664d6deacbeff6ffa83.tar.gz
youtube-dl-d0111a7409e4cc071beee664d6deacbeff6ffa83.tar.bz2
[FunnyOrDie] simplify
Diffstat (limited to 'youtube_dl/extractor/funnyordie.py')
-rw-r--r--youtube_dl/extractor/funnyordie.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py
index 1b93c10..cdd3baf 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'),
}