summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2014-12-11 17:28:03 -0700
committerCarl Meyer <carl@oddbird.net>2014-12-12 13:13:57 -0700
commit0a8b911582eee85ea6da0d40dd2c7b12de5a78b2 (patch)
tree12832ccd974b273321a9bf183914b714ae8f3e59 /docs
parentb37607193639e25a6c630e8d1b3d3bca0833a652 (diff)
[1.7.x] Fixed #23455 -- Accept either bytes or text for related_name, convert to text.
Backport of c72eb80d114fb5d90bd21b5549e8abd0bbd17f99 from master.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 0f1483e18e..30e1c8fc49 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -125,6 +125,6 @@ Bugfixes
* Fixed a crash in the admin when using "Save as new" and also deleting a
related inline (:ticket:`23857`).
-* Removed auto-conversion of ``related_name`` to unicode in field
- deconstruction, to maintain consistency of bytes/text in migrations matching
- the original values (:ticket:`23455` and :ticket:`23982`).
+* Always converted ``related_name`` to text (unicode), since that is required
+ on Python 3 for interpolation. Removed conversion of ``related_name`` to text
+ in migration deconstruction (:ticket:`23455` and :ticket:`23982`).