django-rocketchat-auth icon indicating copy to clipboard operation
django-rocketchat-auth copied to clipboard

Django 3 problems, is_authenticated now an attribute

Open atonyman opened this issue 4 years ago • 1 comments

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

atonyman avatar May 17 '20 04:05 atonyman