From d8a5555477f930cfb78d47824a50c8eb920a42f6 Mon Sep 17 00:00:00 2001 From: Anastasia Date: Wed, 25 Oct 2023 17:23:16 +0300 Subject: [PATCH] Fixed --- taxi/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taxi/urls.py b/taxi/urls.py index f7bc9e74..e94a7c24 100644 --- a/taxi/urls.py +++ b/taxi/urls.py @@ -23,7 +23,7 @@ path( "drivers//", DriverDetailView.as_view(), name="driver-detail" ), - path('accounts/login/', CustomLoginView.as_view(), name='login') + path("accounts/login/", CustomLoginView.as_view(), name="login") ] app_name = "taxi"