1
0
mirror of https://github.com/django/django.git synced 2025-07-06 18:59:13 +00:00

queryset-refactor: Removed unneeded import.

git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6500 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-10-14 03:45:34 +00:00
parent bd2dfdf989
commit ccc3a4766d

View File

@ -3,7 +3,7 @@ Various combination queries that have been problematic in the past.
""" """
from django.db import models from django.db import models
from django.db.models.query import Q, QNot from django.db.models.query import Q
class Tag(models.Model): class Tag(models.Model):
name = models.CharField(maxlength=10) name = models.CharField(maxlength=10)