diff options
| author | Tim Graham <timograham@gmail.com> | 2015-12-10 09:13:05 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-12 09:50:17 -0500 |
| commit | 3c69d5237796a79705bde3ab50137a0bf8c38b6e (patch) | |
| tree | 32a2224ab585d56a220ab216abdee42449d8aff7 /docs | |
| parent | c12ddbd38504b12392725b522ff63c9a384d9361 (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.txt | 5 |
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. |
