From ccc3a4766d1e4e8604db0925478ec351bc7f1e77 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 14 Oct 2007 03:45:34 +0000 Subject: [PATCH] queryset-refactor: Removed unneeded import. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6500 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/queries/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)