mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
Remove superfluous encodings
This commit is contained in:
parent
8cd10ac4ef
commit
e6137fd61d
@ -380,17 +380,17 @@ def process_info(self, info_dict):
|
||||
|
||||
# Forced printings
|
||||
if self.params.get('forcetitle', False):
|
||||
compat_print(info_dict['title'].encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(info_dict['title'])
|
||||
if self.params.get('forceurl', False):
|
||||
compat_print(info_dict['url'].encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(info_dict['url'])
|
||||
if self.params.get('forcethumbnail', False) and 'thumbnail' in info_dict:
|
||||
compat_print(info_dict['thumbnail'].encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(info_dict['thumbnail'])
|
||||
if self.params.get('forcedescription', False) and 'description' in info_dict:
|
||||
compat_print(info_dict['description'].encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(info_dict['description'])
|
||||
if self.params.get('forcefilename', False) and filename is not None:
|
||||
compat_print(filename.encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(filename)
|
||||
if self.params.get('forceformat', False):
|
||||
compat_print(info_dict['format'].encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
compat_print(info_dict['format'])
|
||||
|
||||
# Do nothing else if in simulate mode
|
||||
if self.params.get('simulate', False):
|
||||
|
@ -87,6 +87,7 @@ def compat_print(s):
|
||||
print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
|
||||
else:
|
||||
def compat_print(s):
|
||||
assert type(s) == type(u'')
|
||||
print(s)
|
||||
|
||||
def htmlentity_transform(matchobj):
|
||||
|
Loading…
Reference in New Issue
Block a user