X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/f5846ccc4228fab747eebc991ea97fd3238aea39..0ed615781d6e53236fe84cc5c9896956dea5a067:/src/mw/cli.py diff --git a/src/mw/cli.py b/src/mw/cli.py index 50327cd..c16791e 100644 --- a/src/mw/cli.py +++ b/src/mw/cli.py @@ -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,8 +61,8 @@ 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 - elif sys.argv[1] in ['--help', '-h']: + the_command = sys.argv[1] # SWEET ACTION + elif sys.argv[1] in ['--help', '-h', 'help']: self.usage() else: print '%s: invalid subcommand: %s' % (self.me, sys.argv[1])