Skip to content

Commit abd4d0e

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def initAlgorithm(self, config=None):
7575
self.predicates = (
7676
('intersects', self.tr('intersects')),
7777
('contains', self.tr('contains')),
78-
('equals', self.tr('equals')),
78+
('isEqual', self.tr('equals')),
7979
('touches', self.tr('touches')),
8080
('overlaps', self.tr('overlaps')),
8181
('within', self.tr('within')),

0 commit comments

Comments
 (0)
Please sign in to comment.