From e34e9d1dd2010127f662e1badf8f17e6bc03ad2f Mon Sep 17 00:00:00 2001 From: bouzenaali Date: Fri, 29 Dec 2023 19:00:38 +0100 Subject: [PATCH] chore: correct the project name spelling in the wsgi.py file again --- project/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/wsgi.py b/project/wsgi.py index da2e98b..1d2d9ce 100644 --- a/project/wsgi.py +++ b/project/wsgi.py @@ -2,7 +2,7 @@ from django.core.wsgi import get_wsgi_application -settings_module = 'projetBDD.deployment' if 'WEBSITE_HOSTNAME' in os.environ else 'projetBDD.settings' +settings_module = 'project.deployment' if 'WEBSITE_HOSTNAME' in os.environ else 'project.settings' os.environ.setdefault('DJANGO_SETTINGS_MODULE', settings_module)