Sort command list via @list commands.

This commit is contained in:
Greg Taylor 2007-05-16 18:22:49 +00:00
parent 5e0cb06221
commit 974c20efc7

View file

@ -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):
""" """