summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-12-10 09:13:05 -0500
committerTim Graham <timograham@gmail.com>2015-12-12 09:50:17 -0500
commit3c69d5237796a79705bde3ab50137a0bf8c38b6e (patch)
tree32a2224ab585d56a220ab216abdee42449d8aff7 /docs
parentc12ddbd38504b12392725b522ff63c9a384d9361 (diff)
[1.9.x] Fixed #25909 -- Added unicode_literals import to apps.py generated by startapp.
Backport of 10427646b887586bf89dacb3b5208b3ad2d17308 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.9.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.9.1.txt b/docs/releases/1.9.1.txt
index 60b793f3e9..bc4a0be8ad 100644
--- a/docs/releases/1.9.1.txt
+++ b/docs/releases/1.9.1.txt
@@ -29,3 +29,8 @@ Bugfixes
* Fixed admin's delete confirmation page's summary counts of related objects
(:ticket:`25883`).
+
+* Added ``from __future__ import unicode_literals`` to the default ``apps.py``
+ created by ``startapp`` on Python 2 (:ticket:`25909`). Add this line to your
+ own ``apps.py`` files created using Django 1.9 if you want your migrations
+ to work on both Python 2 and Python 3.