Mercurial > hg
changeset 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 | 02318e0810ac |
children | d6a13f6db69c |
files | hgext/remotefilelog/debugcommands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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"))