Projet

Général

Profil

0001-auth_fc-fix-typo-in-views.py-53409.patch

Benjamin Dauvergne, 27 avril 2021 15:17

Télécharger (976 octets)

Voir les différences:

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(-)
src/authentic2_auth_fc/views.py
408 408
            # let's try again
409 409
            if created:
410 410
                user.delete()
411
            return self.authenticate(request, sub=sub, token=token, user_info=user_info)
411
            return a2_utils.authenticate(request, sub=sub, token=token, user_info=user_info)
412 412
        except Exception:
413 413
            # if anything unexpected happen and user was created, delete it and re-raise
414 414
            if created:
415
-