From ef344bee2642e0ef23dc592b14a3ce5f8e57d30c Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 16 Sep 2011 19:22:14 +0200 Subject: [PATCH] gunicorn workaound --- pandora/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora/urls.py b/pandora/urls.py index e962204d2..fe53cc5b1 100644 --- a/pandora/urls.py +++ b/pandora/urls.py @@ -7,6 +7,9 @@ from ox.django.http import HttpFileResponse from django.conf import settings +#gunicorn has issues with settings.CONFIG otherwise +import app.models + # Uncomment the next two lines to enable the admin: from django.contrib import admin admin.autodiscover()