From deffb65f09d95704c25cd95c41c188c2be4d76f3 Mon Sep 17 00:00:00 2001 From: Alex Terrell Date: Wed, 3 Apr 2024 15:54:40 -0600 Subject: [PATCH] Update make.py --- make.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/make.py b/make.py index c4b9635..71d8af1 100755 --- a/make.py +++ b/make.py @@ -222,8 +222,7 @@ def status(): print(response) # Create new app from app_template using supplied app name -def create(): - app_name = g_app_name +def create(app_name): if not app_name: print('Please include new app name. Example: python make.py create my_new_app') return @@ -474,7 +473,7 @@ def init(app=None): package() elif utility_name == 'create': - create() + create(option) elif utility_name == 'status': status()