X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/3a65fcbfa423d5627e41c2f9e17c464d4a594087..refs/heads/master:/src/accounts/urls.py diff --git a/src/accounts/urls.py b/src/accounts/urls.py index 7584fc1..51f344e 100644 --- a/src/accounts/urls.py +++ b/src/accounts/urls.py @@ -1,7 +1,7 @@ -from django.conf.urls import url +from django.urls import path from . import views urlpatterns = [ - url(r'^$', views.ProfileView.as_view(), name='accounts_profile'), + path('', views.ProfileView.as_view(), name='accounts_profile'), ]