Skip to content

Commit

Permalink
Fix 'equals' predicate in SpatialJoinSummary
Browse files Browse the repository at this point in the history
This fixes a typo in SpatialJoinSummary.py "Join attributes by location (summary)" algorithm that prevents the 'equals' predicate to work

(cherry picked from commit afcf048)
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Aug 31, 2018
1 parent 3fb4643 commit 8aaeb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/SpatialJoinSummary.py
Expand Up @@ -85,7 +85,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 8aaeb7b

Please sign in to comment.