diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-26 21:32:51 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-26 21:38:01 +0200 |
commit | bcd606c0feb565b260e0231a655c6fc16e439698 (patch) | |
tree | 2abbb4e21555ad791d1ccc77d2c46250d0325867 /youtube_dl/extractor/comedycentral.py | |
parent | ed92bc9f6e402434e6d69d2947739d0c4151d77e (diff) |
ComedycentralIE: Force conversion of the description to unicode (close #941)
When writing to a file it would fail.
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r-- | youtube_dl/extractor/comedycentral.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py index 1bb359046..6985e88f0 100644 --- 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) |