From b14bff0145e85c27827d90243b725cee2c45bbc8 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Wed, 2 Feb 2022 15:28:36 +0100 Subject: [PATCH] We should do this properly .. --- allianceauth/authentication/hmac_urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allianceauth/authentication/hmac_urls.py b/allianceauth/authentication/hmac_urls.py index ba8fb03e..e7c03d11 100644 --- a/allianceauth/authentication/hmac_urls.py +++ b/allianceauth/authentication/hmac_urls.py @@ -5,7 +5,7 @@ from django.urls import re_path from django.urls import path urlpatterns = [ - path('^activate/complete/$', views.activation_complete, name='registration_activation_complete'), + path('activate/complete/', views.activation_complete, name='registration_activation_complete'), # The activation key can make use of any character from the # URL-safe base64 alphabet, plus the colon as a separator. re_path(r'^activate/(?P[-:\w]+)/$', views.ActivationView.as_view(), name='registration_activate'),