From 47671cfcf7900d66fc320c24772f73888b777a95 Mon Sep 17 00:00:00 2001 From: John Matthew Date: Thu, 7 Jul 2016 21:47:39 -0700 Subject: [PATCH] update to remove old whitenoise setup --- project/wsgi.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/project/wsgi.py b/project/wsgi.py index fd86e6e..7c2f625 100644 --- a/project/wsgi.py +++ b/project/wsgi.py @@ -13,6 +13,4 @@ from django.core.wsgi import get_wsgi_application os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings") -from whitenoise.django import DjangoWhiteNoise - -application = DjangoWhiteNoise(get_wsgi_application()) +application = get_wsgi_application()