Skip to content

Commit afcf048

Browse files
authoredAug 28, 2018
Fix 'equals' predicate in SpatialJoinSummary
This fixes a typo in SpatialJoinSummary.py "Join attributes by location (summary)" algorithm that prevents the 'equals' predicate to work
1 parent abd4d0e commit afcf048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/qgis/SpatialJoinSummary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def initAlgorithm(self, config=None):
8585
self.predicates = (
8686
('intersects', self.tr('intersects')),
8787
('contains', self.tr('contains')),
88-
('equals', self.tr('equals')),
88+
('isEqual', self.tr('equals')),
8989
('touches', self.tr('touches')),
9090
('overlaps', self.tr('overlaps')),
9191
('within', self.tr('within')),

0 commit comments

Comments
 (0)
Please sign in to comment.