Mercurial > hg
changeset 49712:905eb32fdf4e
path: pass `path` to `peer` in `hg histedit`
We directly use the `path` object to build the `peer` object.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 01 Dec 2022 02:21:18 +0100 |
parents | e2a31b0bc5d0 |
children | 6f89a1d74511 |
files | hgext/histedit.py |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/histedit.py Thu Dec 01 02:14:40 2022 +0100 +++ b/hgext/histedit.py Thu Dec 01 02:21:18 2022 +0100 @@ -1051,12 +1051,11 @@ if opts is None: opts = {} path = urlutil.get_unique_push_path(b'histedit', repo, ui, remote) - dest = path.loc - - ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(dest)) + + ui.status(_(b'comparing with %s\n') % urlutil.hidepassword(path.loc)) revs, checkout = hg.addbranchrevs(repo, repo, (path.branch, []), None) - other = hg.peer(repo, opts, dest) + other = hg.peer(repo, opts, path) if revs: revs = [repo.lookup(rev) for rev in revs]