From 69fc019f268116a4b5dcccca00ddf9153748c305 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Tue, 23 Apr 2013 12:24:08 +0200 Subject: [PATCH] YoutubeIE when no description is found use an empty unicode string (closes #800) --- youtube_dl/InfoExtractors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 5cc0e9195..208b44887 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -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 -- 2.30.2