From ea52b8088b6b0719d428de26c51e96a92cfb66bb Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 18 Sep 2015 22:08:10 +0200 Subject: With the new version of Flask-Login is_authenticated is now a property. --- pyaggr3g470r/views/api/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pyaggr3g470r/views/api') diff --git a/pyaggr3g470r/views/api/common.py b/pyaggr3g470r/views/api/common.py index acb5dd68..8083cb4c 100644 --- a/pyaggr3g470r/views/api/common.py +++ b/pyaggr3g470r/views/api/common.py @@ -45,7 +45,7 @@ def authenticate(func): if not getattr(func, 'authenticated', True): logged_in = True # authentication based on the session (already logged on the site) - elif 'email' in session or g.user.is_authenticated(): + elif 'email' in session or g.user.is_authenticated: logged_in = True else: # authentication via HTTP only -- cgit