From ac1b22953bb1ac7210c135970c40d97eeccd6fa3 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sat, 26 Oct 2024 22:08:03 +0200 Subject: [PATCH] Fix: config_example ADMIN email definition --- config_example/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config_example/config.py b/config_example/config.py index c274be8..d6116e2 100644 --- a/config_example/config.py +++ b/config_example/config.py @@ -62,7 +62,7 @@ DEBUG = False SECRET_KEY = None # Define the administrators (for mail delivery) -ADMINS = [("Piki", {EMAIL_FROM}), ] +ADMINS = [("Piki", EMAIL_FROM), ] # This defines the listener hostnames for your django server