update
[cas.git] / src / accounts / urls.py
index 7584fc1..51f344e 100644 (file)
@@ -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'),
 ]