From 74cd88608020d19c619567370cd5cc7c5b1cea22 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 18 Aug 2020 10:39:25 +0200 Subject: [PATCH] Fix manifest file storage --- blog/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/settings.py b/blog/settings.py index dd21303..53ad612 100644 --- a/blog/settings.py +++ b/blog/settings.py @@ -26,7 +26,7 @@ SECRET_KEY = os.getenv( # SECURITY WARNING: don't run with debug turned on in production! DEBUG = os.getenv("DEBUG", "true").lower() == "true" -TESTING = os.getenv("TESTING", "true").lower() == "true" +TESTING = os.getenv("TESTING", "false").lower() == "true" ALLOWED_HOSTS = [ "localhost",