##// END OF EJS Templates
remotefilelog: use %d to format an int...
Gregory Szorc -
r41354:3d685ddf default
parent child Browse files
Show More
@@ -270,9 +270,9 b' class versionmixin(object):'
270 # only affect this instance
270 # only affect this instance
271 self.VERSION = version
271 self.VERSION = version
272 elif self.VERSION != version:
272 elif self.VERSION != version:
273 raise RuntimeError('inconsistent version: %s' % version)
273 raise RuntimeError('inconsistent version: %d' % version)
274 else:
274 else:
275 raise RuntimeError('unsupported version: %s' % version)
275 raise RuntimeError('unsupported version: %d' % version)
276
276
277 class basepack(versionmixin):
277 class basepack(versionmixin):
278 # The maximum amount we should read via mmap before remmaping so the old
278 # The maximum amount we should read via mmap before remmaping so the old
General Comments 0
You need to be logged in to leave comments. Login now