Support --help as the only command-line argument
This commit is contained in:
parent
4f9391f015
commit
b8f49ef212
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ def main():
|
|||
command_name = sys.argv[1] if len(sys.argv) > 1 else None
|
||||
args = sys.argv[2:]
|
||||
|
||||
if not command_name:
|
||||
if not command_name or command_name == "--help":
|
||||
return print_usage()
|
||||
|
||||
user, app = config.get_active_user_app()
|
||||
|
|
Loading…
Reference in a new issue