Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 45008:e1ea913da2ed
version: sort extensions by name in verbose mode
External extensions can be assigned any name, but presumably most enabled
extensions will be internal ones and having them sorted makes it easier to find
specific ones if the list is long. The lists in `hg help extensions` are
already sorted.
Differential Revision: https://phab.mercurial-scm.org/D8671
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 27 Jun 2020 21:45:20 -0400 |
parents | 93aa152d4295 |
children | 7d494425167c |
line wrap: on
line diff
--- a/mercurial/commands.py Sat Jun 27 20:19:41 2020 +0200 +++ b/mercurial/commands.py Sat Jun 27 21:45:20 2020 -0400 @@ -7830,7 +7830,7 @@ names = [] vers = [] isinternals = [] - for name, module in extensions.extensions(): + for name, module in sorted(extensions.extensions()): names.append(name) vers.append(extensions.moduleversion(module) or None) isinternals.append(extensions.ismoduleinternal(module))