Changes between Initial Version and Version 9 of Ticket #10233
- Timestamp:
- May 23, 2013, 3:33:32 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10233
-
Property
Status
changed from
new
toclosed
-
Property
Severity
changed from
normal
tocritical
-
Property
Priority
changed from
normal
tohigh
- Property Keywords unicode csv export added
-
Property
Resolution
changed from
to
fixed
-
Property
Status
changed from
-
Ticket #10233 – Description
initial v9 1 When downloading a csv file from the /hours url, sometimes I get a UnicodeEncodeError: 'ascii' codec can't encode character ... in position 21: ordinal not in range(128) 1 When downloading a csv file from the /hours url, sometimes I get a 2 {{{ 3 UnicodeEncodeError: 'ascii' codec can't encode character ... in position 21: ordinal not in range(128) 4 }}} 2 5 3 This error occurs when a user entered unicode characters in tickets/hour logs. When downloading the csv file in queryhours2csv, this error was trown.6 This error occurs when a user entered unicode characters in tickets/hour logs. When downloading the csv file in `queryhours2csv`, this error was thrown. 4 7 5 8 The included diff fixes the error by properly encoding all strings as utf-8.