diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-14 03:45:34 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-10-14 03:45:34 +0000 |
| commit | ccc3a4766d1e4e8604db0925478ec351bc7f1e77 (patch) | |
| tree | 477e935b4e848e5e86db8b59427fec0c4f134233 /tests | |
| parent | bd2dfdf98956bfdc0d0879f68b5e4718adc5dc96 (diff) | |
queryset-refactor: Removed unneeded import.
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6500 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/queries/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/queries/models.py b/tests/regressiontests/queries/models.py index 175e0c867e..2a2129cc4a 100644 --- a/tests/regressiontests/queries/models.py +++ b/tests/regressiontests/queries/models.py @@ -3,7 +3,7 @@ Various combination queries that have been problematic in the past. """ from django.db import models -from django.db.models.query import Q, QNot +from django.db.models.query import Q class Tag(models.Model): name = models.CharField(maxlength=10) |
