From b9560e687d314e64461dfc97ce0f43c0bc87137c Mon Sep 17 00:00:00 2001 From: Ruidy Nemausat Date: Tue, 3 Dec 2019 18:04:05 +0100 Subject: [PATCH] whitenoise overriding --- villafleurie/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/villafleurie/settings.py b/villafleurie/settings.py index b4c8e3e..bfb43db 100644 --- a/villafleurie/settings.py +++ b/villafleurie/settings.py @@ -38,7 +38,7 @@ MIDDLEWARE = [ ] if os.environ.get('ENV') == 'PRODUCTION': - STATICFILES_STORAGE = 'villafleurie.storage.CompressedManifestStaticFilesStorage' + STATICFILES_STORAGE = 'storage.CompressedManifestStaticFilesStorage' INTERNAL_IPS = ['127.0.0.1']