youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit bcd606c0feb565b260e0231a655c6fc16e439698
parent ed92bc9f6e402434e6d69d2947739d0c4151d77e
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Wed, 26 Jun 2013 21:32:51 +0200

ComedycentralIE: Force conversion of the description to unicode (close #941)

When writing to a file it would fail.

Diffstat:
Myoutube_dl/extractor/comedycentral.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py @@ -172,7 +172,7 @@ class ComedyCentralIE(InfoExtractor): 'ext': 'mp4', 'format': format, 'thumbnail': None, - 'description': officialTitle, + 'description': compat_str(officialTitle), } results.append(info)