Ticket #6268: ticket6268.patch
File ticket6268.patch, 661 bytes (added by , 17 years ago) |
---|
-
django/core/handlers/base.py
90 91 return response 91 92 raise 92 93 93 # Complain if the view returned None (a common error).94 if response is None:94 # Complain if the view did not return a http.HttpResonse object. 95 if not isinstance(response, http.HttpResponse): 95 96 try: 96 97 view_name = callback.func_name # If it's a function 97 98 except AttributeError: