Skip to content

Commit 10312cc

Browse files
author
gioman
committed
fixes ticket #8814:
1 parent 491231e commit 10312cc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/plugins/processing/grass/GrassAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def processAlgorithm(self, progress):
381381

382382
if isinstance(out, OutputVector):
383383
filename = out.value
384-
command = 'v.out.ogr -c -e -z input=' + out.name + uniqueSufix
384+
command = 'v.out.ogr -s -c -e -z input=' + out.name + uniqueSufix
385385
command += ' dsn="' + os.path.dirname(out.value) + '"'
386386
command += ' format=ESRI_Shapefile'
387387
command += ' olayer=' + os.path.basename(out.value)[:-4]

python/plugins/processing/grass/description/v.delaunay.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ v.delaunay - Creates a Delaunay triangulation from an input vector map containin
33
Vector (v.*)
44
ParameterVector|input|Input vector layer|0|False
55
ParameterBoolean|-r|Use only points in current region|True
6-
ParameterBoolean|-l|Output triangulation as a graph (lines), not areas|True
76
OutputVector|output|Delaunay triangulation
87

0 commit comments

Comments
 (0)