1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-15 00:09:38 +00:00

Fixed issue #1277 KeyError when no description.

Allows a continue with a warning when an extractor cannot retrieve a description.
This commit is contained in:
Jai Grimshaw 2013-08-31 01:53:01 +10:00
parent 3243d0f7b6
commit b3f0e53048

View file

@ -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