From 1e828df091c6469238be06e128e36dde3e5e13d4 Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Sun, 7 Jul 2024 09:44:49 +0200 Subject: [PATCH] Fix missing trailing slash in weather source urls --- publicdb/status_display/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publicdb/status_display/urls.py b/publicdb/status_display/urls.py index 288d2f37..889c7769 100644 --- a/publicdb/status_display/urls.py +++ b/publicdb/status_display/urls.py @@ -60,7 +60,7 @@ *[ # Datasets path( - f'{type}//', + f'{type}///', views.get_specific_dataset_source, {'type': type}, name=type,