From: Philipp Hagemeister Date: Tue, 7 Jan 2014 05:49:15 +0000 (+0100) Subject: [xattr] Always use UTF-8 X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=afc7bc33cb8dc63a5e3495e7e11b47f84d89be23;p=youtube-dl.git [xattr] Always use UTF-8 On Windows and other systems, other encodings would break when trying to encode non-ASCII characters. Simply use UTF-8, like every sane system. --- diff --git a/youtube_dl/postprocessor/xattrpp.py b/youtube_dl/postprocessor/xattrpp.py index 1cb8ecf1c..4317ba836 100644 --- a/youtube_dl/postprocessor/xattrpp.py +++ b/youtube_dl/postprocessor/xattrpp.py @@ -99,7 +99,7 @@ class XAttrMetadataPP(PostProcessor): if infoname == "upload_date": value = hyphenate_date(value) - byte_value = value.encode(preferredencoding()) + byte_value = value.encode('utf-8') write_xattr(filename, xattrname, byte_value) return True, info