# HG changeset patch # User Pierre-Yves David # Date 1669854898 -3600 # Node ID 54e98a88542b566e59d59c11c191a43e2a494e76 # Parent c9690836747dc32e57c5c4a6a7e5fc1d16e47b63 path: directly use the push_variant in `hg outgoing` We don't need any extra processing now. diff -r c9690836747d -r 54e98a88542b mercurial/commands.py --- a/mercurial/commands.py Thu Dec 01 01:34:26 2022 +0100 +++ b/mercurial/commands.py Thu Dec 01 01:34:58 2022 +0100 @@ -5038,7 +5038,7 @@ opts = pycompat.byteskwargs(opts) if opts.get(b'bookmarks'): for path in urlutil.get_push_paths(repo, ui, dests): - dest = path.pushloc or path.loc + dest = path.loc other = hg.peer(repo, opts, dest) try: if b'bookmarks' not in other.listkeys(b'namespaces'):