From bdcb08e46617acacb5390989304f6f371cdcb6be Mon Sep 17 00:00:00 2001 From: Roland Haroutiounian Date: Thu, 7 Jul 2016 16:47:56 +0200 Subject: [PATCH] Fixed a method syntax in auth.py --- lodel/auth/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodel/auth/auth.py b/lodel/auth/auth.py index 6a7a3d9..2c5709f 100644 --- a/lodel/auth/auth.py +++ b/lodel/auth/auth.py @@ -269,7 +269,7 @@ login EmClass '%s' and password EmClass '%s'. Abording..." % ( #@note Call a dedicated hook in order to allow session implementation as #plugin #@thrown AuthenticationFailure - def auth_session(self, token) + def auth_session(self, token): try: self.__user_infos = LodelHook.call_hook('lodel2_session_load', caller = self, payload = token)