From b3f0e5304807862ce72c136da90b860df805ee5c Mon Sep 17 00:00:00 2001 From: Jai Grimshaw Date: Sat, 31 Aug 2013 01:53:01 +1000 Subject: [PATCH] Fixed issue #1277 KeyError when no description. Allows a continue with a warning when an extractor cannot retrieve a description. --- youtube_dl/YoutubeDL.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index b289bd9e2..afce28040 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -492,6 +492,8 @@ class YoutubeDL(object): self.report_writedescription(descfn) with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile: descfile.write(info_dict['description']) + except (KeyError, TypeError): + self.report_warning(u'Cannot extract description.') except (OSError, IOError): self.report_error(u'Cannot write description file ' + descfn) return -- 2.40.0