Projet

Général

Profil

0002-utils-fix-typo-in-warning-log-24835.patch

Benjamin Dauvergne, 29 juin 2018 16:36

Télécharger (955 octets)

Voir les différences:

Subject: [PATCH 2/5] utils: fix typo in warning log (#24835)

 src/authentic2_auth_fc/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2_auth_fc/utils.py
164 164
            else:
165 165
                setattr(user.attributes, attribute, value)
166 166
        else:
167
            logger.warning(u'auth_fc: unknown attribut in user_info mapping: %s', attribute)
167
            logger.warning(u'auth_fc: unknown attribute in user_info mapping: %s', attribute)
168 168
            continue
169 169
        if mapping.get('tag'):
170 170
            tags.add(mapping['tag'])
171
-