From 3a8edbcfce35b78b6de8977a2691df2f1d6f9370 Mon Sep 17 00:00:00 2001 From: Phil Weir Date: Mon, 20 Nov 2023 22:20:01 +0000 Subject: [PATCH] remove extra slash from urls.py --- arches/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arches/urls.py b/arches/urls.py index cb2acd7cc10..d6971de11ad 100644 --- a/arches/urls.py +++ b/arches/urls.py @@ -324,5 +324,5 @@ pass urlpatterns += [ - re_path(r'^static/(?P.*)\$', views.serve) + re_path(r'^static/(?P.*)$', views.serve) ]