From e60a7ae50eb052b4a2f4f6ad86dd8c93030fa5f2 Mon Sep 17 00:00:00 2001 From: Maxime Alves LIRMM Date: Wed, 1 Jul 2020 10:52:10 +0200 Subject: [PATCH] typo dans le nom de fonction --- halfapi/acl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/halfapi/acl.py b/halfapi/acl.py index a540d3e..946e3ed 100644 --- a/halfapi/acl.py +++ b/halfapi/acl.py @@ -5,7 +5,7 @@ class BaseACL: def connected(req, func): """ Decorator that checks if the user object of the request has been set """ - def caller() + def caller(): try: getattr(req.user, 'is_authenticated') return func()