Changes between Initial Version and Version 4 of Ticket #21564
- Timestamp:
- Dec 6, 2013, 11:53:15 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21564
- Property Type Uncategorized → Bug
- Property Has patch set
- Property Triage Stage Unreviewed → Ready for checkin
-
Ticket #21564 – Description
initial v4 1 1 The current method in django/views/generic/base.py is: 2 {{{ 2 3 def http_method_not_allowed(self, request, *args, **kwargs): 3 4 logger.warning('Method Not Allowed (%s): %s', request.method, request.path, … … 8 9 ) 9 10 return http.HttpResponseNotAllowed(self._allowed_methods()) 10 11 }}} 11 12 The 'extra' dictionary should reference the locally scoped 'request' object instead of the class scoped member. 12 13