Skip to content

Commit

Permalink
Fix 'equals' predicate in SpatialJoin
Browse files Browse the repository at this point in the history
This fixes a typo in SpatialJoin.py "Join attributes by location" algorithm that prevents the 'equals' predicate to work
  • Loading branch information
agiudiceandrea committed Aug 28, 2018
1 parent 9710c18 commit abd4d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/SpatialJoin.py
Expand Up @@ -75,7 +75,7 @@ def initAlgorithm(self, config=None):
self.predicates = (
('intersects', self.tr('intersects')),
('contains', self.tr('contains')),
('equals', self.tr('equals')),
('isEqual', self.tr('equals')),
('touches', self.tr('touches')),
('overlaps', self.tr('overlaps')),
('within', self.tr('within')),
Expand Down

0 comments on commit abd4d0e

Please sign in to comment.