diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-30 14:16:17 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-30 14:16:17 -0400 |
| commit | 4745ea1d27a154a44ed2cacb66b01d5de1f9e3d3 (patch) | |
| tree | e8657f0ba73b240ca0f439a6d0c2333a68e415f5 | |
| parent | 2004f86b858b809101c8cc442383ac90756e306e (diff) | |
Added hints argument to GeoQuerySet; refs #13724.
| -rw-r--r-- | django/contrib/gis/db/models/query.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/gis/db/models/query.py b/django/contrib/gis/db/models/query.py index 4199d19a88..593a6d7dc1 100644 --- a/django/contrib/gis/db/models/query.py +++ b/django/contrib/gis/db/models/query.py @@ -15,8 +15,8 @@ class GeoQuerySet(QuerySet): "The Geographic QuerySet." ### Methods overloaded from QuerySet ### - def __init__(self, model=None, query=None, using=None): - super(GeoQuerySet, self).__init__(model=model, query=query, using=using) + def __init__(self, model=None, query=None, using=None, hints=None): + super(GeoQuerySet, self).__init__(model=model, query=query, using=using, hints=hints) self.query = query or GeoQuery(self.model) def values(self, *fields): |
