diff --git a/ssoauth/auth_utils.py b/ssoauth/auth_utils.py index a55fed6ed3b3a2f03892931fc4730d8557565d0f..8a87d061b1252c04469f9d2f0c58fb961f8e3bf9 100644 --- a/ssoauth/auth_utils.py +++ b/ssoauth/auth_utils.py @@ -60,7 +60,7 @@ def get_or_create_user(uuid, username): meta.uuid = uuid meta.save() except models.UserMapping.DoesNotExist: - logger.Error("User {username} lost their meta. Auto-fixing and hoping for the best.".format(**locals())) + logger.error("User {username} lost their meta. Auto-fixing and hoping for the best.".format(**locals())) models.UserMapping.objects.create(user=user, uuid=uuid) return user