diff options
| author | Claude Paroz <claude@2xlibre.net> | 2015-10-22 14:42:18 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2015-10-22 20:35:54 +0200 |
| commit | 244b7c930f6518024b75a8f87e9bf399cfc79f2f (patch) | |
| tree | f05388b8002a1242d5b761fdaa414abe727f03fb /django | |
| parent | 840e97ab018ef0901fe4731d7502a7e2baf6546b (diff) | |
[1.8.x] Fixed #25592 -- Fixed misnamed strictly_above PostGIS lookup
Fixes a regression from 2bd1bbc42. Thanks Daniel Wiesmann for the report
and Tim Graham for the review.
Backport of c08f85fd54 from master.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/gis/db/backends/postgis/operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/db/backends/postgis/operations.py b/django/contrib/gis/db/backends/postgis/operations.py index e0af0c1ecb..6913533080 100644 --- a/django/contrib/gis/db/backends/postgis/operations.py +++ b/django/contrib/gis/db/backends/postgis/operations.py @@ -67,7 +67,7 @@ class PostGISOperations(BaseSpatialOperations, DatabaseOperations): 'left': PostGISOperator(op='<<'), 'right': PostGISOperator(op='>>'), 'strictly_below': PostGISOperator(op='<<|'), - 'stricly_above': PostGISOperator(op='|>>'), + 'strictly_above': PostGISOperator(op='|>>'), 'same_as': PostGISOperator(op='~='), 'exact': PostGISOperator(op='~='), # alias of same_as 'contains_properly': PostGISOperator(func='ST_ContainsProperly'), |
