diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-08-07 19:06:55 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-08-07 19:06:55 +0700 |
commit | d34995a9e3f596c4dd80178d99f7bd8dbc748e2b (patch) | |
tree | f47f02222bca0860df18538ecd31d720d266be7a /youtube_dl/extractor | |
parent | 958849275f1c6072c712e8d611294a762fadc7f0 (diff) |
[flipagram] Make _search_json_ld non fatal
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/flipagram.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/flipagram.py b/youtube_dl/extractor/flipagram.py index acb6133ff..634f5fe3b 100644 --- a/youtube_dl/extractor/flipagram.py +++ b/youtube_dl/extractor/flipagram.py @@ -48,7 +48,7 @@ class FlipagramIE(InfoExtractor): flipagram = video_data['flipagram'] video = flipagram['video'] - json_ld = self._search_json_ld(webpage, video_id, default=False) + json_ld = self._search_json_ld(webpage, video_id, fatal=False) title = json_ld.get('title') or flipagram['captionText'] description = json_ld.get('description') or flipagram.get('captionText') |