From 83bfb3b00d556b1f5ade6e9c976643ebb60359b8 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Fri, 17 Feb 2023 18:46:37 -0400
Subject: [PATCH] Fix typo in url

---
 steering/urls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/steering/urls.py b/steering/urls.py
index b0e7edf8..f0a4311f 100644
--- a/steering/urls.py
+++ b/steering/urls.py
@@ -100,7 +100,7 @@ urlpatterns = [
     path("api/v1/", include(timeslot_router.urls)),
     path("api/v1/playout", json_playout),
     path("api/v1/program/week", json_playout),
-    path("api/v1/program/<int:year>/<int:month>/<int:day>)/", json_day_schedule),
+    path("api/v1/program/<int:year>/<int:month>/<int:day>/", json_day_schedule),
     path("api/v1/schema/", SpectacularAPIView.as_view(), name="schema"),
     path(
         "api/v1/schema/swagger-ui/",
-- 
GitLab