X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/856c67a6f2c8a618e94bf0c72af70e7d65bd10c4..1e4face96bd7aea75ce9b0188d43e7f22ce9df00:/src/mw/cli.py diff --git a/src/mw/cli.py b/src/mw/cli.py index 238f72e..52df23b 100644 --- a/src/mw/cli.py +++ b/src/mw/cli.py @@ -1,6 +1,6 @@ ### # mw - VCS-like nonsense for MediaWiki websites -# Copyright (C) 2009 Ian Weller +# Copyright (C) 2010 Ian Weller # # 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 @@ -16,13 +16,13 @@ # with this program. If not, see . ### -import inspect import mw.clicommands import os import sys -from pprint import pprint + class CLI(object): + def __init__(self): self.me = os.path.basename(sys.argv[0]) self.commands = {} @@ -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) + ')' @@ -60,7 +62,7 @@ class CLI(object): 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']: + elif sys.argv[1] in ['--help', '-h', 'help']: self.usage() else: print '%s: invalid subcommand: %s' % (self.me, sys.argv[1])