From cbe82411cc57c5c574c90b34f3e4622314ffa1c4 Mon Sep 17 00:00:00 2001
From: Jannis Leidel <jannis@leidel.info>
Date: Thu, 22 Dec 2011 22:46:05 +0000
Subject: [PATCH] Added yet another missing with_statement import. Thanks,
 Florian Apolloner.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17248 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 django/utils/archive.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/django/utils/archive.py b/django/utils/archive.py
index 8909cb6db7..ea948fe44f 100644
--- a/django/utils/archive.py
+++ b/django/utils/archive.py
@@ -21,6 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 """
+from __future__ import with_statement
 import os
 import shutil
 import sys