django-rocketchat-auth
django-rocketchat-auth copied to clipboard
Django 3 problems, is_authenticated now an attribute
Hi,
I'm hitting some problems with Django 3. I've found one issue with line 36 of rocketchat_auth/views.py. It looks like
if not request.user.is_authenticated():
now needs to be an attribute like this
if not request.user.is_authenticated:
-Tony