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:34:01 -0500 |
| commit | 10427646b887586bf89dacb3b5208b3ad2d17308 (patch) | |
| tree | f01ec36e92fd0a9a778673ff28e1c3423e039abd /docs | |
| parent | b0ad5081d51afa0a7ca71e865180d02f37fa2cca (diff) | |
Fixed #25909 -- Added unicode_literals import to apps.py generated by startapp.
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. |
