diff hgext/remotefilelog/debugcommands.py @ 40668:feae4d1f5e01

py3: use '%d' for integers instead of '%s' Differential Revision: https://phab.mercurial-scm.org/D5285
author Pulkit Goyal <pulkit@yandex-team.ru>
date Mon, 19 Nov 2018 20:30:07 +0300
parents aa588bf40a08
children 194e43c2bac9
line wrap: on
line diff
--- 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"))