X-Git-Url: https://projects.mako.cc/source/mw/blobdiff_plain/2699c75f1d264d5d960289e4a11b687a87bb9943..5ccd41727b6b8d298e969258d022ccdd22540190:/src/mw/cli.py diff --git a/src/mw/cli.py b/src/mw/cli.py index 54fbd77..ef33d73 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 @@ -60,7 +60,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])