From ec415e64f89acb668f3ed504405f3265cd618f57 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Sat, 10 Aug 2024 22:40:30 +0100 Subject: [PATCH] fix typeerror --- core/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/settings.py b/core/settings.py index a2c7d4b..1a6ff20 100644 --- a/core/settings.py +++ b/core/settings.py @@ -157,7 +157,7 @@ DISCORD_REFRESH_TOKEN_REQUEST = { } DISCORD_API_URL = env("DISCORD_API_URL", default="https://discord.com/api/v10") DISCORD_OAUTH2_URL = env("DISCORD_OAUTH2_URL", default=None) -SUPERUSER_IDS = env("SUPERUSER_IDS", default=None).split(",") +SUPERUSER_IDS = env("SUPERUSER_IDS", default="").split(",") # Logging # https://docs.djangoproject.com/en/5.0/topics/logging/