Skip to content

Commit

Permalink
[processing] fixed concave hull algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Nov 13, 2015
1 parent cba585d commit 54c4f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ConcaveHull.py
Expand Up @@ -99,7 +99,7 @@ def processAlgorithm(self, progress):
#dissolve all Delaunay triangles
progress.setText(self.tr('Dissolving Delaunay triangles...'))
dissolved = processing.runalg("qgis:dissolve", delaunay_layer,
True, None)['OUTPUT']
True, None, None)['OUTPUT']
dissolved_layer = processing.getObject(dissolved)
#save result
progress.setText(self.tr('Saving data...'))
Expand Down

0 comments on commit 54c4f75

Please sign in to comment.