Browse Source

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

When writing to a file it would fail.
rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
bcd606c0fe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/comedycentral.py

+ 1
- 1
youtube_dl/extractor/comedycentral.py View File

@ -172,7 +172,7 @@ class ComedyCentralIE(InfoExtractor):
'ext': 'mp4',
'format': format,
'thumbnail': None,
'description': officialTitle,
'description': compat_str(officialTitle),
}
results.append(info)


Loading…
Cancel
Save