From patchwork Mon Feb 12 02:35:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2146: py3: port string formatting From: phabricator X-Patchwork-Id: 27619 Message-Id: <4dabdbe12b892273157f2942e2302d0f@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Mon, 12 Feb 2018 02:35:56 +0000 indygreg updated this revision to Diff 5452. indygreg edited the summary of this revision. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2146?vs=5431&id=5452 REVISION DETAIL https://phab.mercurial-scm.org/D2146 AFFECTED FILES hgext/rebase.py CHANGE DETAILS To: indygreg, #hg-reviewers, yuja Cc: yuja, mercurial-devel diff --git a/hgext/rebase.py b/hgext/rebase.py --- a/hgext/rebase.py +++ b/hgext/rebase.py @@ -289,7 +289,7 @@ skipped.add(old) seen.add(new) repo.ui.debug('computed skipped revs: %s\n' % - (' '.join(str(r) for r in sorted(skipped)) or None)) + (' '.join('%d' % r for r in sorted(skipped)) or '')) repo.ui.debug('rebase status resumed\n') self.originalwd = originalwd