Support --help as the only command-line argument

This commit is contained in:
Norman Walsh 2023-01-06 14:30:03 +00:00 committed by Ivan Habunek
parent 4f9391f015
commit b8f49ef212
1 changed files with 1 additions and 1 deletions

View File

@ -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()