From 7116c31373020f173370b2c29ad3894b747af818 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sun, 12 Jun 2011 23:50:37 +0000 Subject: [PATCH] Fixed incompatibility (`with` statement usage) with Python 2.5 introduced in [16368]. Thanks ojii for the report via IRC. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16389 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/formtools/wizard/tests/wizardtests/tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/contrib/formtools/wizard/tests/wizardtests/tests.py b/django/contrib/formtools/wizard/tests/wizardtests/tests.py index b07f286590..9366a6d403 100644 --- a/django/contrib/formtools/wizard/tests/wizardtests/tests.py +++ b/django/contrib/formtools/wizard/tests/wizardtests/tests.py @@ -1,3 +1,4 @@ +from __future__ import with_statement import os from django.test import TestCase