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:23:50 -0400
commitc4ee93128f1880c3993cf07619ff4e0524920a8e (patch)
tree78f653b4e232a068e0d4810bdbb18188b5ad4525 /docs
parent6f006f40f78649c20c72c75c8159e164de9c7b6c (diff)
[1.10.x] Fixed #27111 -- Fixed KeyError if USERNAME_FIELD isn't in UserCreationForm.fields.
Backport of 3c18f8a3d2f61669493f9ff2015ddc027eada3d6 from master
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`).