# HG changeset patch # User Goffi # Date 1395670733 -3600 # Node ID 059b56cbd247dfb7fc04b772d90afc7130caf990 # Parent 73873e9b56f7e8f0bf170165d8f41de9f96c4a62 plugin text commands: commands are now sorted in /help diff -r 73873e9b56f7 -r 059b56cbd247 src/plugins/plugin_misc_text_commands.py --- a/src/plugins/plugin_misc_text_commands.py Mon Mar 24 14:46:18 2014 +0100 +++ b/src/plugins/plugin_misc_text_commands.py Mon Mar 24 15:18:53 2014 +0100 @@ -205,7 +205,7 @@ longuest = max([len(command) for command in commands]) help_cmds = [] - for command in self._commands: + for command in sorted(self._commands): method = self._commands[command] try: help_str = method.__doc__.split('\n')[0]