From: Sergey M․ Date: Mon, 8 Aug 2016 15:44:36 +0000 (+0700) Subject: [bbc] Add proper default to _search_json_ld call X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=522f6c066da93b6baec3399b7098556e5ec55f43;p=youtube-dl [bbc] Add proper default to _search_json_ld call --- diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index b29e05970..83e6d024c 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -759,7 +759,7 @@ class BBCIE(BBCCoUkIE): webpage = self._download_webpage(url, playlist_id) - json_ld_info = self._search_json_ld(webpage, playlist_id, default=None) + json_ld_info = self._search_json_ld(webpage, playlist_id, default={}) timestamp = json_ld_info.get('timestamp') playlist_title = json_ld_info.get('title')