Submitter | phabricator |
---|---|
Date | April 16, 2021, 12:03 a.m. |
Message ID | <differential-rev-PHID-DREV-7etvsdrbelsr6v62vkxk-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/48758/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5128,15 +5128,9 @@ """ opts = pycompat.byteskwargs(opts) + + pathitems = urlutil.list_paths(ui, search) ui.pager(b'paths') - if search: - pathitems = [ - (name, path) - for name, path in pycompat.iteritems(ui.paths) - if name == search - ] - else: - pathitems = sorted(pycompat.iteritems(ui.paths)) fm = ui.formatter(b'paths', opts) if fm.isplain():