Closed larsrinn closed 6 years ago
In the post_comment_ajax view you're using the is_authenticated method on the User instance. This ability to call it as method and property was deprecated in Django 1.10 removed in 2.0: https://docs.djangoproject.com/en/2.0/releases/2.0/#features-removed-in-2-0
post_comment_ajax
is_authenticated
User
ok, I just saw there is already an PR but I couldn't find an issue
Fixed! v2.0 is out!
Great, thanks! We're already running it in production :)
In the
post_comment_ajax
view you're using theis_authenticated
method on theUser
instance. This ability to call it as method and property was deprecated in Django 1.10 removed in 2.0: https://docs.djangoproject.com/en/2.0/releases/2.0/#features-removed-in-2-0