mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
ComedycentralIE: Force conversion of the description to unicode (close #941)
When writing to a file it would fail.
This commit is contained in:
parent
ed92bc9f6e
commit
bcd606c0fe
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ def _real_extract(self, url):
|
|||
'ext': 'mp4',
|
||||
'format': format,
|
||||
'thumbnail': None,
|
||||
'description': officialTitle,
|
||||
'description': compat_str(officialTitle),
|
||||
}
|
||||
results.append(info)
|
||||
|
||||
|
|
Loading…
Reference in a new issue