[Fixed]-The view comments.views.comment_create_view didn't return an HttpResponse object. It returned None instead

1👍

Not all of the code paths result into HttpResponse being returned. For example, if the method is not POST or the user is not authenticated, the view returns nothing (None).

👤alecxe

Leave a comment