From e43af1ff9f67a5467bda98928fcd1cfaa7d0cc3c Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 26 Apr 2021 15:07:05 +0200 Subject: [PATCH 1/2] auth_fc: fix typo in views.py (#53409) --- src/authentic2_auth_fc/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2_auth_fc/views.py b/src/authentic2_auth_fc/views.py index 8c7d36db..554f0640 100644 --- a/src/authentic2_auth_fc/views.py +++ b/src/authentic2_auth_fc/views.py @@ -408,7 +408,7 @@ class LoginOrLinkView(View): # let's try again if created: user.delete() - return self.authenticate(request, sub=sub, token=token, user_info=user_info) + return a2_utils.authenticate(request, sub=sub, token=token, user_info=user_info) except Exception: # if anything unexpected happen and user was created, delete it and re-raise if created: -- 2.31.0