[npo] Allow missing description
authorSergey M․ <dstftw@gmail.com>
Thu, 16 Jul 2015 18:40:04 +0000 (00:40 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 16 Jul 2015 18:40:04 +0000 (00:40 +0600)
youtube_dl/extractor/npo.py

index 91adb23f0a140ca17d1330b42bfc526abcd281a1..e733d96f6fdcdac7e8e3b4aaa07e0d570b64ce3f 100644 (file)
@@ -237,7 +237,7 @@ class NPOIE(NPOBaseIE):
             # prefer aflevering_titel if any since titel may be too generic, e.g.
             # http://tegenlicht.vpro.nl/afleveringen/2014-2015/access-to-africa.html
             'title': metadata.get('aflevering_titel') or metadata['titel'],
-            'description': metadata['info'],
+            'description': metadata.get('info'),
             'thumbnail': metadata.get('images', [{'url': None}])[-1]['url'],
             'upload_date': unified_strdate(metadata.get('gidsdatum')),
             'duration': parse_duration(metadata.get('tijdsduur')),