aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/democracynow.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/democracynow.py')
-rw-r--r--youtube_dl/extractor/democracynow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/democracynow.py b/youtube_dl/extractor/democracynow.py
index 6cd395e11..4b6d2652a 100644
--- a/youtube_dl/extractor/democracynow.py
+++ b/youtube_dl/extractor/democracynow.py
@@ -38,7 +38,7 @@ class DemocracynowIE(InfoExtractor):
def _real_extract(self, url):
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
- description = self._og_search_description(webpage)
+ description = self._og_search_description(webpage, default=None)
json_data = self._parse_json(self._search_regex(
r'<script[^>]+type="text/json"[^>]*>\s*({[^>]+})', webpage, 'json'),