From 5cf836053404ba32dc39a808022944d4e0eae9fa Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 16 Jul 2014 18:39:01 -0400 Subject: [PATCH] Point the wsgi to the same autogenerated settings file --- mayan/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/wsgi.py b/mayan/wsgi.py index 2af45e7f63..c0aa85f7b1 100644 --- a/mayan/wsgi.py +++ b/mayan/wsgi.py @@ -8,7 +8,7 @@ https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ """ import os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mayan.settings") +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mayan.settings.local") from django.core.wsgi import get_wsgi_application application = get_wsgi_application()