D5285: py3: use '%d' for integers instead of '%s'

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Tue Nov 20 07:26:50 EST 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGfeae4d1f5e01: py3: use '%d' for integers instead of '%s' (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5285?vs=12561&id=12568

REVISION DETAIL
  https://phab.mercurial-scm.org/D5285

AFFECTED FILES
  hgext/remotefilelog/debugcommands.py

CHANGE DETAILS

diff --git a/hgext/remotefilelog/debugcommands.py b/hgext/remotefilelog/debugcommands.py
--- a/hgext/remotefilelog/debugcommands.py
+++ b/hgext/remotefilelog/debugcommands.py
@@ -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"))



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list