templater: use pycompat.sysbytes to bytes-ify some __name__ attrs
authorAugie Fackler <augie@google.com>
Tue, 17 Oct 2017 10:51:43 -0400
changeset 34838 d3ea6a1c798f
parent 34837 4fdc4adbc838
child 34839 110040e715c9
templater: use pycompat.sysbytes to bytes-ify some __name__ attrs Spotted by yuya in review of e87e62b7fc0b. Differential Revision: https://phab.mercurial-scm.org/D1145
mercurial/templater.py
--- 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):