Changes between Initial Version and Version 1 of Ticket #30758
- Timestamp:
- Sep 4, 2019, 7:51:51 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30758 – Description
initial v1 74 74 BaseTemporalField.to_python expects a string and runs .strip() which generates AttributeError and crashes. 75 75 76 76 {{{ 77 77 Traceback (most recent call last): 78 78 File "/Users/joakim/.pyenv/versions/3.5.2/lib/python3.5/site-packages/django/core/handlers/exception.py", line 34, in inner … … 122 122 File "/Users/joakim/.pyenv/versions/3.5.2/lib/python3.5/site-packages/django/forms/fields.py", line 379, in to_python 123 123 value = value.strip() 124 }}}