mirror of
https://github.com/l1ving/youtube-dl
synced 2024-11-22 21:12:50 +08:00
YoutubeIE when no description is found use an empty unicode string (closes #800)
This commit is contained in:
parent
613bf66939
commit
69fc019f26
@ -570,7 +570,7 @@ class YoutubeIE(InfoExtractor):
|
|||||||
if video_description:
|
if video_description:
|
||||||
video_description = clean_html(video_description)
|
video_description = clean_html(video_description)
|
||||||
else:
|
else:
|
||||||
video_description = ''
|
video_description = u''
|
||||||
|
|
||||||
# subtitles
|
# subtitles
|
||||||
video_subtitles = None
|
video_subtitles = None
|
||||||
|
Loading…
Reference in New Issue
Block a user