From patchwork Sun Feb 11 14:05:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2135: py3: use "%d" instead of "%s" for integers From: phabricator X-Patchwork-Id: 27572 Message-Id: <07b665cd3d253d24aa2f41528d81f7f0@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Sun, 11 Feb 2018 14:05:50 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGf91b7f26c68a: py3: use "%d" instead of "%s" for integers (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2135?vs=5398&id=5420 REVISION DETAIL https://phab.mercurial-scm.org/D2135 AFFECTED FILES hgext/mq.py CHANGE DETAILS To: pulkit, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -1185,7 +1185,7 @@ except error.Abort: pass i += 1 - name = '%s__%s' % (namebase, i) + name = '%s__%d' % (namebase, i) return name def checkkeepchanges(self, keepchanges, force):