diff options
| author | Bobby <[email protected]> | 2024-09-04 22:39:12 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-09-04 22:39:12 -0400 |
| commit | d92fd37895e017166c662c12a03db80a4ea5575b (patch) | |
| tree | ad8db9399d41a1a7fcf5df6340478d2e29daab2d /detail | |
| parent | 79d2dd22d7ee345bae15c88487b88a892a508f88 (diff) | |
| download | yugen-d92fd37895e017166c662c12a03db80a4ea5575b.tar.xz yugen-d92fd37895e017166c662c12a03db80a4ea5575b.zip | |
remove trailing slash
Diffstat (limited to 'detail')
| -rw-r--r-- | detail/urls.py | 2 |
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'), ] |
