mercurial/ui.py
changeset 34271 a254c669b475
parent 34208 0a2fd3bfc704
child 34367 f61f5af5ed31
--- a/mercurial/ui.py	Mon Sep 18 13:37:32 2017 -0400
+++ b/mercurial/ui.py	Mon Sep 18 13:37:00 2017 -0400
@@ -1521,10 +1521,10 @@
 
         if total:
             pct = 100.0 * pos / total
-            self.debug('%s:%s %s/%s%s (%4.2f%%)\n'
+            self.debug('%s:%s %d/%d%s (%4.2f%%)\n'
                      % (topic, item, pos, total, unit, pct))
         else:
-            self.debug('%s:%s %s%s\n' % (topic, item, pos, unit))
+            self.debug('%s:%s %d%s\n' % (topic, item, pos, unit))
 
     def log(self, service, *msg, **opts):
         '''hook for logging facility extensions