aboutsummaryrefslogtreecommitdiff
path: root/detail
diff options
context:
space:
mode:
authorBobby <[email protected]>2024-09-04 22:39:12 -0400
committerBobby <[email protected]>2024-09-04 22:39:12 -0400
commitd92fd37895e017166c662c12a03db80a4ea5575b (patch)
treead8db9399d41a1a7fcf5df6340478d2e29daab2d /detail
parent79d2dd22d7ee345bae15c88487b88a892a508f88 (diff)
downloadyugen-d92fd37895e017166c662c12a03db80a4ea5575b.tar.xz
yugen-d92fd37895e017166c662c12a03db80a4ea5575b.zip
remove trailing slash
Diffstat (limited to 'detail')
-rw-r--r--detail/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/detail/urls.py b/detail/urls.py
index ca85152..6bb7829 100644
--- a/detail/urls.py
+++ b/detail/urls.py
@@ -4,5 +4,5 @@ from . import views
app_name = "detail"
urlpatterns = [
- path('<int:anime_id>/', views.detail, name='detail'),
+ path('<int:anime_id>', views.detail, name='detail'),
]