Fixed #8904 -- Improved error message when spatial lookup is not available, and changed exception to `ValueError` to prevent swallowing of error on queryset evaluation.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12887 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Justin Bronn 2010-03-30 01:13:47 +00:00
parent 7e5265785a
commit 539cfe8cb7
1 changed files with 2 additions and 1 deletions

View File

@ -241,7 +241,8 @@ class GeometryField(Field):
return params
else:
raise TypeError("Field has invalid lookup: %s" % lookup_type)
raise ValueError('%s is not a valid spatial lookup for %s.' %
(lookup_type, self.__class__.__name__))
def get_prep_lookup(self, lookup_type, value):
if lookup_type == 'isnull':