1
0
Fork 0
mirror of https://gitlab.com/dstftw/youtube-dl.git synced 2020-11-16 09:42:26 +00:00

YoutubeIE when no description is found use an empty unicode string (closes #800)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-04-23 12:24:08 +02:00
parent 613bf66939
commit 69fc019f26

View file

@ -570,7 +570,7 @@ class YoutubeIE(InfoExtractor):
if video_description:
video_description = clean_html(video_description)
else:
video_description = ''
video_description = u''
# subtitles
video_subtitles = None