summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-24 20:20:12 +0300
committerTim Graham <timograham@gmail.com>2016-08-24 13:20:12 -0400
commit3c18f8a3d2f61669493f9ff2015ddc027eada3d6 (patch)
tree0404984ebc4f2a04dcae05eb1c65afa6f186b6da /docs
parent9aaeec337e217109208672d8fe47eeb49ca492b5 (diff)
Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in UserCreationForm.fields.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.1.txt b/docs/releases/1.10.1.txt
index b5c72c5e8b..2fd860527a 100644
--- a/docs/releases/1.10.1.txt
+++ b/docs/releases/1.10.1.txt
@@ -76,3 +76,6 @@ Bugfixes
* Included the already applied migration state changes in the ``Apps`` instance
provided to the ``pre_migrate`` signal receivers to allow ``ContentType``
renaming to be performed on model rename (:ticket:`27100`).
+
+* Reallowed subclassing ``UserCreationForm`` without ``USERNAME_FIELD`` in
+ ``Meta.fields`` (:ticket:`27111`).