From 86764391bc522bfae645dbd7a91f9c94110d67a5 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Wed, 29 Feb 2012 01:37:37 -0800 Subject: [PATCH] Updated the django.wsgi file for devstack. Change-Id: Ie651717806208f0ed7e045071599d71ca05c7fbe --- openstack_dashboard/wsgi/django.wsgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/wsgi/django.wsgi b/openstack_dashboard/wsgi/django.wsgi index 17ca25033..1e92a4d20 100644 --- a/openstack_dashboard/wsgi/django.wsgi +++ b/openstack_dashboard/wsgi/django.wsgi @@ -6,7 +6,7 @@ from django.conf import settings # Add this file path to sys.path in order to import settings sys.path.insert(0, os.path.join(os.path.dirname(os.path.realpath(__file__)), '../..')) -os.environ['DJANGO_SETTINGS_MODULE'] = 'dashboard.settings' +os.environ['DJANGO_SETTINGS_MODULE'] = 'openstack_dashboard.settings' sys.stdout = sys.stderr DEBUG = False