Skip to content

Commit

Permalink
[sextante] fixed delete duplicated geoms algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jun 6, 2013
1 parent 23bbec3 commit cbd335a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/algs/mmqgisx/MMQGISXAlgorithms.py
Expand Up @@ -105,7 +105,7 @@ def processAlgorithm(self, progress):
i = 0
cleaned = {}
for feature in features:
cleaned[feature.geometry()] = feature
cleaned[feature.geometry().exportToWkt()] = feature
progress.setPercentage(float(i) /featurecount * 50)
i += 1
i = 0
Expand Down

0 comments on commit cbd335a

Please sign in to comment.