Changes between Initial Version and Version 1 of Ticket #13600
- Timestamp:
- May 24, 2010, 1:56:51 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13600 – Description
initial v1 4 4 5 5 I suppose it could be fixed with replacing the third endmost line in django.views.static.was_modified_since from actual 6 6 {{{ 7 7 except (AttributeError, ValueError): 8 8 }}} 9 9 to 10 10 {{{ 11 11 except (AttributeError, ValueError, OverflowError): 12 12 }}} 13 13 Probably, there has been some reason not to catch OverflowErrors, then sorry.