mercurial/debugcommands.py
changeset 40456 24cb8a6d4c20
parent 40365 4f37af86d5d5
child 41089 a59a74721c76
--- a/mercurial/debugcommands.py	Wed Oct 24 21:28:03 2018 +0900
+++ b/mercurial/debugcommands.py	Wed Oct 24 21:29:04 2018 +0900
@@ -1172,7 +1172,7 @@
     if not util.safehasattr(index, 'stats'):
         raise error.Abort(_('debugindexstats only works with native code'))
     for k, v in sorted(index.stats().items()):
-        ui.write('%s: %s\n' % (k, v))
+        ui.write('%s: %d\n' % (k, v))
 
 @command('debuginstall', [] + cmdutil.formatteropts, '', norepo=True)
 def debuginstall(ui, **opts):