diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-01-28 20:37:05 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-01-28 20:37:05 +0000 |
| commit | 4a3aceed3f0d93e675288edfdf598c8b2e9811b8 (patch) | |
| tree | 9786b6576ce8e5838628827fadd73d6ff940ade3 | |
| parent | 58bcb7d1615511d34c155dedcde981b7f92df788 (diff) | |
Added __future__ import for Python 2.5 forgotten in r17402.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17404 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/flatpages/tests/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/flatpages/tests/forms.py b/django/contrib/flatpages/tests/forms.py index 884c40acc8..12b47e84d6 100644 --- a/django/contrib/flatpages/tests/forms.py +++ b/django/contrib/flatpages/tests/forms.py @@ -1,3 +1,5 @@ +from __future__ import with_statement + from django.conf import settings from django.contrib.flatpages.forms import FlatpageForm from django.contrib.flatpages.models import FlatPage |
