From 228e5920962571539894f3351e8e30cc86e2853a Mon Sep 17 00:00:00 2001 From: Johannes Schriewer Date: Sun, 19 Jan 2025 18:42:19 +0100 Subject: [PATCH] Fix stray ) --- inventory_project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inventory_project/settings.py b/inventory_project/settings.py index 451a679..d0bd676 100644 --- a/inventory_project/settings.py +++ b/inventory_project/settings.py @@ -51,7 +51,7 @@ CSRF_TRUSTED_ORIGINS: list[str] = [ for host in os.environ.get("INVENTORY_TRUSTED_ORIGINS", "localhost").split(',') for prot in ('http', 'https') ], - f'{SERVER_URL}}' + f'{SERVER_URL}' ] # Application definition