From b169162df966ce3e08eaca12aabbb2f449d3291a Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Sun, 5 Jan 2025 13:53:40 +0200 Subject: [PATCH] Replace deprecated STATICFILES_STORAGE setting with STORAGES --- tcms/settings/devel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcms/settings/devel.py b/tcms/settings/devel.py index 73aca8866e..f0c5df305d 100644 --- a/tcms/settings/devel.py +++ b/tcms/settings/devel.py @@ -41,6 +41,6 @@ # http://docs.djangoproject.com/en/dev/ref/templates/api/#django-template-context-processors-debug INTERNAL_IPS = ("127.0.0.1",) -STATICFILES_STORAGE = "tcms.tests.storage.RaiseWhenFileNotFound" +STORAGES["staticfiles"]["BACKEND"] = "tcms.tests.storage.RaiseWhenFileNotFound" ANONYMOUS_ANALYTICS = False