diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-09-26 22:59:44 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-09-26 22:59:44 +0000 |
| commit | efac677add479a61778c2ac336dea98fa1d5440b (patch) | |
| tree | 5848706bc026a1aa58cb27c40c41f14f932df34b | |
| parent | 1df1378f9e6e71588f45624c4ddf9e5d37cc875a (diff) | |
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
| -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 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 |
