1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #23593 -- Fixed crash in AdminEmailHandler with non-ASCII characters in request.

Thanks edevil for the report and Simon Charette for review.
This commit is contained in:
Tim Graham
2014-10-06 16:07:20 -04:00
parent 6f6e7d01dc
commit 9dff5ce7c7
3 changed files with 28 additions and 1 deletions

View File

@@ -97,3 +97,6 @@ Bugfixes
possible to import arbitrary packages from the Python path. This was not
considered a security issue because ``admindocs`` is only accessible to staff
users (:ticket:`23601`).
* Fixed ``UnicodeDecodeError`` crash in ``AdminEmailHandler`` with non-ASCII
characters in the request (:ticket:`23593`).