Fixed #10836 -- Forgot to move import to to `where` module. Thanks, seanl for ticket & patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10572 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2009-04-16 14:16:16 +00:00
parent 9103a9bd6c
commit 4eaf4155f8
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,5 @@
from itertools import izip
from django.db.models.query import sql
from django.db.models.fields import FieldDoesNotExist
from django.db.models.fields.related import ForeignKey
from django.contrib.gis.db.backend import SpatialBackend

View File

@ -1,5 +1,5 @@
from django.db import connection
from django.db.models.fields import Field
from django.db.models.fields import Field, FieldDoesNotExist
from django.db.models.sql.constants import LOOKUP_SEP
from django.db.models.sql.expressions import SQLEvaluator
from django.db.models.sql.where import WhereNode