Projet

Général

Profil

0024-misc-fix-logging-too-many-args-pylint-error-56982.patch

Valentin Deniaud, 21 septembre 2021 17:09

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH 24/59] misc: fix logging-too-many-args pylint error (#56982)

 src/authentic2_auth_oidc/backends.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
src/authentic2_auth_oidc/backends.py
105 105
                )
106 106
                return None
107 107
            if len(id_token.aud) > 1 and 'azp' not in id_token:
108
                logger.warning(
109
                    'auth_oidc: multiple audience and azp not set', id_token.aud, provider.client_id
110
                )
108
                logger.warning('auth_oidc: multiple audience and azp not set')
111 109
                return None
112 110
            if id_token.azp != provider.client_id:
113 111
                logger.warning(
114
-