From patchwork Wed Nov 29 21:16:12 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D1537: py3: use '%d' for integers rather than '%s' From: phabricator X-Patchwork-Id: 25803 Message-Id: <12f29803c0789254c79630ba5b950211@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Wed, 29 Nov 2017 21:16:12 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG8f6641fa7c89: py3: use '%d' for integers rather than '%s' (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D1537?vs=3950&id=3968 REVISION DETAIL https://phab.mercurial-scm.org/D1537 AFFECTED FILES mercurial/debugcommands.py CHANGE DETAILS To: pulkit, #hg-reviewers, durin42 Cc: mercurial-devel diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -296,7 +296,7 @@ msg %= indent_string, exc.version, len(data) ui.write(msg) else: - msg = "%sversion: %s (%d bytes)\n" + msg = "%sversion: %d (%d bytes)\n" msg %= indent_string, version, len(data) ui.write(msg) fm = ui.formatter('debugobsolete', opts)