From 228aeaf2fdf0205294825a40c6752b2c8abf6d7a Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Dec 2022 17:34:26 +0530 Subject: [PATCH] fix: print help when no args passed [skip ci] --- easy-install.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/easy-install.py b/easy-install.py index 82fc1738..26d5ab72 100755 --- a/easy-install.py +++ b/easy-install.py @@ -318,3 +318,5 @@ if __name__ == "__main__": cprint("Emails with example.com not acceptable", level=1) sys.exit(1) setup_prod(args.project, args.sitename, args.email) + else: + parser.print_help()