This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airavata-cookiecutter-django-output-view.git
commit 0370c2321e7c73902e53def5a1a839b2f623c9ec Author: Marcus Christie <[email protected]> AuthorDate: Fri Jun 4 12:19:37 2021 -0400 improve error message --- hooks/pre_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/pre_gen_project.py b/hooks/pre_gen_project.py index b4367df..25e89f7 100644 --- a/hooks/pre_gen_project.py +++ b/hooks/pre_gen_project.py @@ -22,7 +22,7 @@ if not os.path.isfile(os.path.join(django_app_module_dir, "apps.py")): break print(f"ERROR: {{cookiecutter.custom_django_app_module_name}} doesn't look like a Django app module", file=sys.stderr) if candidate is not None: - print(f"Did you mean '{candidate}' instead of '{{cookiecutter.custom_django_app_module_name}}'?", file=sys.stderr) + print(f"For custom_django_app_module_name, did you mean '{candidate}' instead of '{{cookiecutter.custom_django_app_module_name}}'?", file=sys.stderr) sys.exit(1) # Make sure that there isn't an output_views isn't a file
