py3: use '%d' for integers instead of '%s'
authorPulkit Goyal <pulkit@yandex-team.ru>
Mon, 19 Nov 2018 20:30:07 +0300
changeset 40668 feae4d1f5e01
parent 40667 02318e0810ac
child 40669 d6a13f6db69c
py3: use '%d' for integers instead of '%s' Differential Revision: https://phab.mercurial-scm.org/D5285
hgext/remotefilelog/debugcommands.py
--- a/hgext/remotefilelog/debugcommands.py	Mon Nov 19 19:57:11 2018 +0300
+++ b/hgext/remotefilelog/debugcommands.py	Mon Nov 19 20:30:07 2018 +0300
@@ -33,7 +33,7 @@
 
     size, firstnode, mapping = parsefileblob(path, decompress)
 
-    ui.status(_("size: %s bytes\n") % (size))
+    ui.status(_("size: %d bytes\n") % (size))
     ui.status(_("path: %s \n") % (path))
     ui.status(_("key: %s \n") % (short(firstnode)))
     ui.status(_("\n"))