Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 17322:7124f984dc8d stable
help: use the first topic name from helptable, not the longest alias
This makes the 'additional help topics' list consistent with the output from
keyword search (for instance subrepo/subrepos).
The sorting by longest name was introduced in 3f6a4f1de43f. There might have
been a good reason for it back then, but now it seems like a better idea to
place the preferred name first in the list in helptable.
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Wed, 01 Aug 2012 14:59:15 +0200 |
parents | 2e0805f59736 |
children | e560ecb755fe |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Aug 01 00:18:23 2012 +0200 +++ b/mercurial/commands.py Wed Aug 01 14:59:15 2012 +0200 @@ -3297,7 +3297,7 @@ rst.append(_("\nadditional help topics:\n\n")) topics = [] for names, header, doc in help.helptable: - topics.append((sorted(names, key=len, reverse=True)[0], header)) + topics.append((names[0], header)) for t, desc in topics: rst.append(" :%s: %s\n" % (t, desc))