# HG changeset patch # User Pulkit Goyal # Date 2018-11-19 17:30:07 # Node ID feae4d1f5e01d41d83e1a227ab78bed9c2d460e7 # Parent 02318e0810ac0aa955cca93c20a07c7c5829498e py3: use '%d' for integers instead of '%s' Differential Revision: https://phab.mercurial-scm.org/D5285 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 @@ def debugremotefilelog(ui, path, **opts) 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"))