mercurial/mail.py
changeset 36119 6ea7f1c10c81
parent 36118 9e47bfbeb723
child 36120 54dfb65e2f82
--- a/mercurial/mail.py	Sun Feb 11 18:47:19 2018 -0800
+++ b/mercurial/mail.py	Sun Feb 11 18:50:24 2018 -0800
@@ -187,7 +187,7 @@
 
 def codec2iana(cs):
     ''''''
-    cs = email.charset.Charset(cs).input_charset.lower()
+    cs = pycompat.sysbytes(email.charset.Charset(cs).input_charset.lower())
 
     # "latin1" normalizes to "iso8859-1", standard calls for "iso-8859-1"
     if cs.startswith("iso") and not cs.startswith("iso-"):