From f1bc3b0401a4239696bb51fbcc8c03c3e013d894 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Wed, 9 Nov 2011 17:39:07 +0000 Subject: [PATCH] Fixed incompatibility with Python 2.5 introduced in r17077. Thanks Florian for the heads up. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17078 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/user_commands/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/modeltests/user_commands/tests.py b/tests/modeltests/user_commands/tests.py index 896dd667ff..e138e07b91 100644 --- a/tests/modeltests/user_commands/tests.py +++ b/tests/modeltests/user_commands/tests.py @@ -1,3 +1,5 @@ +from __future__ import with_statement + from StringIO import StringIO from django.core import management