From da3e48ec1fcf404742a8f5baf3220e5a0598cfda Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 26 Jan 2020 23:46:27 +0100 Subject: [PATCH] DEBUG set to False for repository --- main/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/settings.py b/main/settings.py index 5908540..f5188e7 100644 --- a/main/settings.py +++ b/main/settings.py @@ -39,7 +39,7 @@ except KeyError: raise KeyError(secret_key_warning) # SECURITY WARNING: don't run with debug turned on in production! # -DEBUG = True +DEBUG = False ALLOWED_HOSTS = config.get('ALLOWED_HOSTS', [])