'dict' object has no attribute 'status_code' error in django project
django
Solution
Looks like you are not returning a instance of HttpResponse from your view. could you paste a code snippet? also, please try to unfold a highlighted exception (it's coloured with a dark grey background) and see what's the value of 'response' variable.
Problem
I am getting this error in my django project, how can i resolve it. Traceback Switch to copy-and-paste view ``` /home/vishakha/webapps/django/local/lib/python2.7/site-packages/django/core/handlers/base.py in get_response response = self.apply_response_fixes(request, response) ... ▶ Local vars /home/vishakha/webapps/django/local/lib/python2.7/site-packages/django/core/handlers/base.py in apply_response_fixes response = func(request, response) ... ▶ Local vars /home/vishakha/webapps/django/local/lib/python2.7/site-packages/django/http/utils.py in conditional_content_removal if 100 <= response.status_code < 200 or response.status_code in (204, 304): ... ▶ Local vars ```