Browse Source

Remove superfluous encodings

Philipp Hagemeister 12 years ago
parent
commit
e6137fd61d
2 changed files with 7 additions and 6 deletions
  1. 6 6
      youtube_dl/FileDownloader.py
  2. 1 0
      youtube_dl/utils.py

+ 6 - 6
youtube_dl/FileDownloader.py

@@ -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):

+ 1 - 0
youtube_dl/utils.py

@@ -87,6 +87,7 @@ if sys.version_info < (3,0):
 		print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
 else:
 	def compat_print(s):
+		assert type(s) == type(u'')
 		print(s)
 
 def htmlentity_transform(matchobj):