From ee3b197ad42aab50943c8380ec73a7933a122ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Thu, 14 May 2020 23:37:47 +0200 Subject: [PATCH] Fix settings.local.ALLOWED_HOSTS --- cof/settings/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cof/settings/local.py b/cof/settings/local.py index 0ccb05dd..bb06f006 100644 --- a/cof/settings/local.py +++ b/cof/settings/local.py @@ -19,7 +19,7 @@ for app in bds_prod.INSTALLED_APPS: # Tweaks for debug/local development # --- -ALLOWED_HOSTS = None +ALLOWED_HOSTS = [] DEBUG = True EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"