Django - AttributeError type object 'Http404' has no attribute 'get'
16 Aug 2016This issue mostly because you return Http404 instead of raise Http404.
You just need to replace return Http404
with raise Http404
This issue mostly because you return Http404 instead of raise Http404.
You just need to replace return Http404
with raise Http404