Sort command list via @list commands.
This commit is contained in:
parent
5e0cb06221
commit
974c20efc7
1 changed files with 3 additions and 1 deletions
|
|
@ -97,7 +97,9 @@ class Server(dispatcher):
|
||||||
"""
|
"""
|
||||||
Return a string representing the server's command list.
|
Return a string representing the server's command list.
|
||||||
"""
|
"""
|
||||||
return cmdtable.ctable.keys()
|
clist = cmdtable.ctable.keys()
|
||||||
|
clist.sort()
|
||||||
|
return clist
|
||||||
|
|
||||||
def reload(self, session):
|
def reload(self, session):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue