summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-05-29 09:45:41 -0400
committerTim Graham <timograham@gmail.com>2017-05-29 09:51:16 -0400
commitc341803315c17f79a14acd88aaf1d44a23604c8b (patch)
treea93783b254c07d678096a665c2f41e927a67fd90 /docs
parent2c03e145866337a0dded66e0c87ce235cd29581c (diff)
[1.11.x] Fixed #28204 -- Fixed MultipleObjectMixin.paginate_queryset() crash on Python 2 if InvalidPage message contains non-ASCII.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.2.txt b/docs/releases/1.11.2.txt
index ef235fa9ed..4dcfda7cc7 100644
--- a/docs/releases/1.11.2.txt
+++ b/docs/releases/1.11.2.txt
@@ -36,3 +36,6 @@ Bugfixes
* Relaxed the validation added in Django 1.11 of the fields in the ``defaults``
argument of ``QuerySet.get_or_create()`` and ``update_or_create()`` to
reallow settable model properties (:ticket:`28222`).
+
+* Fixed ``MultipleObjectMixin.paginate_queryset()`` crash on Python 2 if the
+ ``InvalidPage`` message contains non-ASCII (:ticket:`28204`).