From patchwork Tue Feb 13 02:48:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2174: py3: convert context to bytes instead of str From: phabricator X-Patchwork-Id: 27778 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Tue, 13 Feb 2018 02:48:48 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGdd905ea1ea60: py3: convert context to bytes instead of str (authored by indygreg, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2174?vs=5475&id=5597 REVISION DETAIL https://phab.mercurial-scm.org/D2174 AFFECTED FILES mercurial/debugcommands.py CHANGE DETAILS To: indygreg, #hg-reviewers, pulkit, durin42 Cc: mercurial-devel diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -2356,7 +2356,7 @@ """ # passed to successorssets caching computation from one call to another cache = {} - ctx2str = str + ctx2str = bytes node2str = short for rev in scmutil.revrange(repo, revs): ctx = repo[rev]