From f4fce3490f2ec31cb657f8bb04481baa8aeab688 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 27 Jun 2018 20:00:13 +0200 Subject: [PATCH] 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 6e9c35b..c3adc7a 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'])