Author: jbronn Date: 2007-09-29 21:30:06 -0500 (Sat, 29 Sep 2007) New Revision: 6437
Modified: django/branches/gis/django/contrib/gis/db/models/query.py Log: gis: Fixed #5629 with patch from rcoup. Modified: django/branches/gis/django/contrib/gis/db/models/query.py =================================================================== --- django/branches/gis/django/contrib/gis/db/models/query.py 2007-09-29 14:02:41 UTC (rev 6436) +++ django/branches/gis/django/contrib/gis/db/models/query.py 2007-09-30 02:30:06 UTC (rev 6437) @@ -1,7 +1,7 @@ import operator from django.core.exceptions import ImproperlyConfigured from django.db import connection -from django.db.models.query import Q, QuerySet, handle_legacy_orderlist, quote_only_if_word, orderfield2column +from django.db.models.query import Q, QuerySet, handle_legacy_orderlist, quote_only_if_word, orderfield2column, fill_table_cache from django.db.models.fields import FieldDoesNotExist from django.utils.datastructures import SortedDict from django.contrib.gis.db.models.fields import GeometryField --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
