X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/5ccd41727b6b8d298e969258d022ccdd22540190..e0123b0e3e4be7c79d8c9e6d770c0a133a73e75f:/src/mw/cli.py diff --git a/src/mw/cli.py b/src/mw/cli.py index ef33d73..6e73c02 100644 --- a/src/mw/cli.py +++ b/src/mw/cli.py @@ -1,6 +1,6 @@ ### # mw - VCS-like nonsense for MediaWiki websites -# Copyright (C) 2010 Ian Weller +# Copyright (C) 2011 Ian Weller and others # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -45,7 +45,9 @@ class CLI(object): def usage(self): print 'usage: %s [subcommand]' % self.me print - for name in self.commands: + commands = self.commands.keys() + commands.sort() + for name in commands: cmd = self.commands[name] if len(cmd.shortcuts) > 0: full = name + ' (' + ' '.join(cmd.shortcuts) + ')' @@ -59,7 +61,7 @@ class CLI(object): # determine what the subcommand is if len(sys.argv) > 1: if sys.argv[1] in self.all_commands: - the_command = sys.argv[1] # SWEET ACTION + the_command = sys.argv[1] # SWEET ACTION elif sys.argv[1] in ['--help', '-h', 'help']: self.usage() else: