##// END OF EJS Templates
py3: avoid `b'%s' % type(...)` in a ProgrammingError...
Martin von Zweigbergk -
r43993:bf87f5ff stable
parent child Browse files
Show More
@@ -1568,7 +1568,7 b' class localrepository(object):'
1568 1568 else:
1569 1569 raise error.ProgrammingError(
1570 1570 b"unsupported changeid '%s' of type %s"
1571 % (changeid, type(changeid))
1571 % (changeid, pycompat.sysstr(type(changeid)))
1572 1572 )
1573 1573
1574 1574 return context.changectx(self, rev, node)
General Comments 0
You need to be logged in to leave comments. Login now