diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-08-08 21:49:45 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-08-08 21:49:45 +0700 |
commit | 3711fa1eb24224a5b898ede355136c9009355a87 (patch) | |
tree | e7a91aa79f85c0a4d88876bc7d849b1a6fcc3a44 /youtube_dl | |
parent | 395c74615c58f5f1b2e462786d6f4d8bab1a313a (diff) |
Revert "[flipagram] Make _search_json_ld non fatal"
This reverts commit d34995a9e3f596c4dd80178d99f7bd8dbc748e2b.
Diffstat (limited to 'youtube_dl')
-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 634f5fe3b..acb6133ff 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, fatal=False) + json_ld = self._search_json_ld(webpage, video_id, default=False) title = json_ld.get('title') or flipagram['captionText'] description = json_ld.get('description') or flipagram.get('captionText') |