From bb857bf4d4eff0567cefcea17861b3728fc02b55 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 26 Sep 2010 23:00:44 +0000 Subject: [PATCH] [1.2.X] Fixed #14280 -- Fixed duplicate import of deepcopy. Thanks, Carl Meyer. Backport from trunk (r13877). git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13878 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/db/models/query.py b/django/db/models/query.py index d9fbd9b8cb..def50934b7 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -2,7 +2,6 @@ The main QuerySet implementation. This provides the public API for the ORM. """ -from copy import deepcopy from itertools import izip from django.db import connections, router, transaction, IntegrityError