From ca425790eac2f321d3d7f30207fbf386e8a25709 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Wed, 24 Jan 2024 13:06:58 -0600 Subject: [PATCH] fix: correct static url pattern --- ietf/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/settings.py b/ietf/settings.py index e3f7e7f5de..ced7e841b7 100644 --- a/ietf/settings.py +++ b/ietf/settings.py @@ -169,7 +169,7 @@ STATIC_URL = "/static/" STATIC_ROOT = os.path.abspath(BASE_DIR + "/../static/") else: - STATIC_URL = "https://static.ietf.org/lib/%s/"%__version__ + STATIC_URL = "https://static.ietf.org/dt/%s/"%__version__ # Intentionally not setting STATIC_ROOT - see django/django (the default is None) # List of finder classes that know how to find static files in