From b4dbb8f3780cbfb588c4e642ecdca55032ebd0dc Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 27 Jun 2018 20:00:13 +0200 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(-) diff --git a/src/authentic2_auth_fc/utils.py b/src/authentic2_auth_fc/utils.py index 5ce780b..9e77d4c 100644 --- a/src/authentic2_auth_fc/utils.py +++ b/src/authentic2_auth_fc/utils.py @@ -164,7 +164,7 @@ def apply_user_info_mappings(user, user_info): else: setattr(user.attributes, attribute, value) else: - logger.warning(u'auth_fc: unknown attribut in user_info mapping: %s', attribute) + logger.warning(u'auth_fc: unknown attribute in user_info mapping: %s', attribute) continue if mapping.get('tag'): tags.add(mapping['tag']) -- 2.18.0