From e2f17512454d8f5e34e2bbdbf481ac9f79335bfb Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Wed, 22 May 2024 17:02:10 +0200 Subject: [PATCH] Add missing comma The admins settings must be a list of 2-tuples and without the comma this returns just the config tuple --- extras/docker/development/settings.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extras/docker/development/settings.py b/extras/docker/development/settings.py index 23ce0d0d2..c0b434929 100644 --- a/extras/docker/development/settings.py +++ b/extras/docker/development/settings.py @@ -15,9 +15,7 @@ DEBUG = env("DJANGO_DEBUG") if os.environ.get('DJANGO_ADMINS'): - ADMINS = ( - env.list('DJANGO_ADMINS') - ) + ADMINS = [env.tuple('DJANGO_ADMINS'), ] MANAGERS = ADMINS if os.environ.get("DJANGO_DB_ENGINE"):