From 3a82ffc5110af23b06a0b736960dd46afa5da111 Mon Sep 17 00:00:00 2001 From: shashi <96287842+mayavy@users.noreply.github.com> Date: Wed, 4 May 2022 21:38:40 +0530 Subject: [PATCH] Update urls.py --- rest_auth/registration/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_auth/registration/urls.py b/rest_auth/registration/urls.py index 2fef5d7..071c2e5 100644 --- a/rest_auth/registration/urls.py +++ b/rest_auth/registration/urls.py @@ -18,6 +18,6 @@ urlpatterns = [ # If you don't want to use API on that step, then just use ConfirmEmailView # view from: # django-allauth https://github.com/pennersr/django-allauth/blob/master/allauth/account/views.py - re_path('account-confirm-email/(?P[-:\w]+)/', TemplateView.as_view(), + re_path(r'account-confirm-email/(?P[-:\w]+)/', TemplateView.as_view(), name='account_confirm_email'), ]