# HG changeset patch # User Pierre-Yves David # Date 1669855061 -3600 # Node ID c55e70bed7ebfdfca3b707eaae23ad488f1edf21 # Parent 1470a533d28aff7eda31d4fe6c1ba501253dd022 path: directly use the push_variant in the `outgoing` revset We don't need any extra processing now. diff -r 1470a533d28a -r c55e70bed7eb mercurial/revset.py --- a/mercurial/revset.py Thu Dec 01 01:37:10 2022 +0100 +++ b/mercurial/revset.py Thu Dec 01 01:37:41 2022 +0100 @@ -1869,7 +1869,7 @@ dests = [] missing = set() for path in urlutil.get_push_paths(repo, repo.ui, dests): - dest = path.pushloc or path.loc + dest = path.loc branches = path.branch, [] revs, checkout = hg.addbranchrevs(repo, repo, branches, [])