From 6d4fee3c3bf3a3236f71306877b71114d27723d8 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 25 Oct 2023 16:28:57 +1100 Subject: [PATCH] Update wsgi.py to reflect directory structure changes --- conservancy/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conservancy/wsgi.py b/conservancy/wsgi.py index 53d8fe70..dd7d6420 100644 --- a/conservancy/wsgi.py +++ b/conservancy/wsgi.py @@ -7,6 +7,6 @@ import os from django.core.wsgi import get_wsgi_application -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'www.settings') +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings') application = get_wsgi_application()