From 5a93970ffc70df3c62dd037894d2957c1d245b65 Mon Sep 17 00:00:00 2001
From: beckerfy <fynn.becker@hs-hannover.de>
Date: Tue, 15 Aug 2017 15:09:43 +0200
Subject: [PATCH] Fix capitalization mistake

---
 ssoauth/auth_utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssoauth/auth_utils.py b/ssoauth/auth_utils.py
index a55fed6..8a87d06 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
 
-- 
GitLab