##// END OF EJS Templates
Corrected error message for incompatible revision flags.
Thomas Arendsen Hein -
r2141:ed631e83 default
parent child Browse files
Show More
@@ -399,7 +399,7 b' class revlog(object):'
399 def ngoffset(self, q):
399 def ngoffset(self, q):
400 if q & 0xFFFF:
400 if q & 0xFFFF:
401 raise RevlogError(_('%s: incompatible revision flag %x') %
401 raise RevlogError(_('%s: incompatible revision flag %x') %
402 (self.indexfile, type))
402 (self.indexfile, q))
403 return long(q >> 16)
403 return long(q >> 16)
404
404
405 def ngtype(self, q):
405 def ngtype(self, q):
General Comments 0
You need to be logged in to leave comments. Login now