summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2014-11-21 19:26:46 +0500
committerTim Graham <timograham@gmail.com>2014-11-24 15:55:43 -0500
commit78fe7ec14ff14130a99edb30584b0ffc49c8ec8c (patch)
treec380908bb013edc18802984481e9e3d8f0785b1f /docs
parent014f699c8bc77da972990b767ab7a5582a8844e9 (diff)
[1.7.x] Fixed #23888 -- Fixed crash in File.__repr__() when name contains unicode.
Backport of 1e9ac504e4 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index c9f69fe856..62419be63e 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -77,3 +77,6 @@ Bugfixes
* Fixed a crash in migrations when deleting a field that is part of a
``index/unique_together`` constraint (:ticket:`23794`).
+
+* Fixed ``django.core.files.File.__repr__()`` when the file's ``name`` contains
+ Unicode characters (:ticket:`23888`).