Changes between Initial Version and Version 3 of Ticket #3344
- Timestamp:
- Jan 21, 2007, 6:17:42 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3344
- Property Keywords gettext Polish added
- Property Triage Stage Unreviewed → Accepted
-
Ticket #3344 – Description
initial v3 1 1 newforms EmailField causes UnicodeEncodeError exception in case when value isn't correct. 2 2 3 {{{ 3 4 Exception Type: UnicodeEncodeError 4 5 Exception Value: 'ascii' codec can't encode character u'\u017a' in position 33: ordinal not in range(128) 5 6 Exception Location: /System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/django/newforms/forms.py in _html_output, line 103 6 7 }}} 7 8 I spent some time for debugging and I found that what probably causes the error is: 8 9