Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is_authenticated changed from method to property #1

Open
remhoughton opened this issue Feb 14, 2018 · 1 comment
Open

is_authenticated changed from method to property #1

remhoughton opened this issue Feb 14, 2018 · 1 comment

Comments

@remhoughton
Copy link

flask-login changed is_authenticated from a method to a property, so the app breaks when run due to line 77 of layout.html

changing from:

          {% if current_user.is_authenticated() %}

to:

          {% if current_user.is_authenticated %}
   

should fix it

@oddy
Copy link
Owner

oddy commented Jul 6, 2018

Thanks for the update :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants