Skip to content

Commit 54c4f75

Browse files
committed
[processing] fixed concave hull algorithm
1 parent cba585d commit 54c4f75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def processAlgorithm(self, progress):
9999
#dissolve all Delaunay triangles
100100
progress.setText(self.tr('Dissolving Delaunay triangles...'))
101101
dissolved = processing.runalg("qgis:dissolve", delaunay_layer,
102-
True, None)['OUTPUT']
102+
True, None, None)['OUTPUT']
103103
dissolved_layer = processing.getObject(dissolved)
104104
#save result
105105
progress.setText(self.tr('Saving data...'))

0 commit comments

Comments
 (0)