From c01ebad629a7d78c769b2c5c0072e59d24940746 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 30 Nov 2011 14:41:28 +0100 Subject: [PATCH] Fix sys.path in WSGI file This allows the inclusion of dashboard.* modules correctly, which is needed to run the app. Change-Id: I7db42657b0253871fa28fb4a1c649182254811ca Signed-off-by: Julien Danjou --- openstack-dashboard/dashboard/wsgi/django.wsgi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openstack-dashboard/dashboard/wsgi/django.wsgi b/openstack-dashboard/dashboard/wsgi/django.wsgi index 0a052d249..17ca25033 100644 --- a/openstack-dashboard/dashboard/wsgi/django.wsgi +++ b/openstack-dashboard/dashboard/wsgi/django.wsgi @@ -4,6 +4,8 @@ import sys import django.core.handlers.wsgi 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' sys.stdout = sys.stderr