##// END OF EJS Templates
revlog: use pycompat.bytestr() to reliably have a %s-able value
Augie Fackler -
r34028:b2eb0aa4 default
parent child Browse files
Show More
@@ -1473,7 +1473,7 b' class revlog(object):'
1473 if revornode is None:
1473 if revornode is None:
1474 revornode = templatefilters.short(hex(node))
1474 revornode = templatefilters.short(hex(node))
1475 raise RevlogError(_("integrity check failed on %s:%s")
1475 raise RevlogError(_("integrity check failed on %s:%s")
1476 % (self.indexfile, revornode))
1476 % (self.indexfile, pycompat.bytestr(revornode)))
1477
1477
1478 def checkinlinesize(self, tr, fp=None):
1478 def checkinlinesize(self, tr, fp=None):
1479 """Check if the revlog is too big for inline and convert if so.
1479 """Check if the revlog is too big for inline and convert if so.
General Comments 0
You need to be logged in to leave comments. Login now