summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nccps2018/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nccps2018/urls.py b/nccps2018/urls.py
index b234d88..9b3e90c 100644
--- a/nccps2018/urls.py
+++ b/nccps2018/urls.py
@@ -21,7 +21,7 @@ from django.contrib.auth import views as auth_views
urlpatterns = [
re_path(r'^', include('website.urls', namespace='website')),
re_path(r'^accounts/',
- include(('django.contrib.auth.urls', 'auth'), namespace='auth')),
+ include(('django.contrib.auth.urls', 'auth_views'), namespace='auth_views')),
path('admin/', admin.site.urls),
re_path(r'^', include('social.apps.django_app.urls', namespace='social')),