mercurial/templater.py
changeset 34838 d3ea6a1c798f
parent 34808 e87e62b7fc0b
child 35010 b81ad5b78a81
child 35386 fdd09d87635b
--- a/mercurial/templater.py	Mon Oct 16 22:44:43 2017 -0400
+++ b/mercurial/templater.py	Tue Oct 17 10:51:43 2017 -0400
@@ -427,9 +427,10 @@
         sym = findsymbolicname(arg)
         if sym:
             msg = (_("template filter '%s' is not compatible with keyword '%s'")
-                   % (filt.__name__.encode('ascii'), sym))
+                   % (pycompat.sysbytes(filt.__name__), sym))
         else:
-            msg = _("incompatible use of template filter '%s'") % filt.__name__
+            msg = (_("incompatible use of template filter '%s'")
+                   % pycompat.sysbytes(filt.__name__))
         raise error.Abort(msg)
 
 def buildmap(exp, context):