Changes between Version 54 and Version 55 of BetterErrorMessages
- Timestamp:
- Feb 24, 2014, 2:44:06 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BetterErrorMessages
v54 v55 29 29 == django.core == 30 30 31 31 The 404 error page served when django.core.urlresolvers.resolve() fails does not contain the exception stack trace, which makes finding the failing call unnecessarily difficult. 32 32 33 33 * Ticket #22055 -- 404 page does not display stack trace when Resolver404 is raised from a view. … … 123 123 == django.template == 124 124 125 * See [http://groups.google.com/group/django-developers/browse_thread/thread/42aff5c291a69041/d006eb5292b8aac3 this thread on the django-developers list] for discussion of suppression of TypeError in the template engine.126 127 125 When resolving a template variable that calls an object method/property. If that method/property has errors we get a {{{VariableDoesNotExist}}} exception without what errors happened, which might confuse the user. 128 126 See #16383 for more details. 127 128 * See [http://groups.google.com/group/django-developers/browse_thread/thread/42aff5c291a69041/d006eb5292b8aac3 this thread on the django-developers list] for discussion of suppression of TypeError in the template engine. 129 129 130 130 Looking at these might be useful: #6907 and #11421.