logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 69fc019f268116a4b5dcccca00ddf9153748c305
parent 613bf66939c7bbba42f8b80b499661e79f33449c
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Tue, 23 Apr 2013 12:24:08 +0200

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

Diffstat:

Myoutube_dl/InfoExtractors.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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