Skip to content

Commit cbd335a

Browse files
committed
[sextante] fixed delete duplicated geoms algorithm
1 parent 23bbec3 commit cbd335a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/sextante/algs/mmqgisx/MMQGISXAlgorithms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def processAlgorithm(self, progress):
105105
i = 0
106106
cleaned = {}
107107
for feature in features:
108-
cleaned[feature.geometry()] = feature
108+
cleaned[feature.geometry().exportToWkt()] = feature
109109
progress.setPercentage(float(i) /featurecount * 50)
110110
i += 1
111111
i = 0

0 commit comments

Comments
 (0)