diff options
| author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-23 12:24:08 +0200 | 
|---|---|---|
| committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-04-23 12:24:08 +0200 | 
| commit | 69fc019f268116a4b5dcccca00ddf9153748c305 (patch) | |
| tree | 401006121898024edaed00473d466dda0a362187 | |
| parent | 613bf66939c7bbba42f8b80b499661e79f33449c (diff) | |
YoutubeIE when no description is found use an empty unicode string (closes #800)
| -rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 | 
