Remove superfluous encodings
[youtube-dl] / youtube_dl / FileDownloader.py
index 6ddbfc469e7bca556ec25521aa897738f892bda9..9e9f2a0e4d503f89694e0cfa830a64d8f565a524 100644 (file)
@@ -380,17 +380,17 @@ class FileDownloader(object):
 
                # 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):