diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-09-26 23:00:44 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-09-26 23:00:44 +0000 |
| commit | bb857bf4d4eff0567cefcea17861b3728fc02b55 (patch) | |
| tree | 8974c32f7d6547174dfc098c5556ace5ac4985a5 | |
| parent | ad3b281c97cc86d0f82f0d06399dcffd77a7e9b6 (diff) | |
[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
| -rw-r--r-- | django/db/models/query.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 |
