Skip to content

Commit 3fb4643

Browse files
agiudiceandreanyalldawson
authored andcommitted
Fix 'equals' predicate in SpatialJoin
This fixes a typo in SpatialJoin.py "Join attributes by location" algorithm that prevents the 'equals' predicate to work (cherry picked from commit abd4d0e)
1 parent 0521bfc commit 3fb4643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def initAlgorithm(self, config=None):
7272
self.predicates = (
7373
('intersects', self.tr('intersects')),
7474
('contains', self.tr('contains')),
75-
('equals', self.tr('equals')),
75+
('isEqual', self.tr('equals')),
7676
('touches', self.tr('touches')),
7777
('overlaps', self.tr('overlaps')),
7878
('within', self.tr('within')),

0 commit comments

Comments
 (0)