From efac677add479a61778c2ac336dea98fa1d5440b Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sun, 26 Sep 2010 22:59:44 +0000 Subject: [PATCH] Fixed #14280 -- Fixed duplicate import of deepcopy. Thanks, Carl Meyer. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13877 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 9ecfb745fd..e16fca1390 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