##// END OF EJS Templates
py3: use % instead of .format() on a bytestring...
Ian Moody -
r42072:2b21c7fb default
parent child Browse files
Show More
@@ -1002,7 +1002,7 b' def template_review(context, mapping):'
1002 if m:
1002 if m:
1003 return templateutil.hybriddict({
1003 return templateutil.hybriddict({
1004 b'url': m.group(r'url'),
1004 b'url': m.group(r'url'),
1005 b'id': b"D{}".format(m.group(r'id')),
1005 b'id': b"D%s" % m.group(r'id'),
1006 })
1006 })
1007 else:
1007 else:
1008 tags = ctx.repo().nodetags(ctx.node())
1008 tags = ctx.repo().nodetags(ctx.node())
General Comments 0
You need to be logged in to leave comments. Login now