From 1e2a53e0e0304f6ce5ea6d02dbff9fd85ef60d12 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Thu, 25 Jan 2024 17:03:36 -0600 Subject: [PATCH] fix: restore explicit STATIC_ROOT (#6970) --- ietf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/settings.py b/ietf/settings.py index ced7e841b7..17ed58d6f8 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -170,7 +170,7 @@ STATIC_ROOT = os.path.abspath(BASE_DIR + "/../static/") else: STATIC_URL = "https://static.ietf.org/dt/%s/"%__version__ - # Intentionally not setting STATIC_ROOT - see django/django (the default is None) + STATIC_ROOT = "/a/www/www6s/lib/dt/%s/"%__version__ # List of finder classes that know how to find static files in # various locations.