Skip to content

Commit e5b2843

Browse files
authored
Merge pull request #4710 from PedroVenancio/fix_16672_2_18
[processing] fixes GRASS 7 v.net.alloc (fix #16672)
2 parents 9626d2f + 9adb496 commit e5b2843

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/processing/algs/grass7/ext

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/grass7/ext/v_net.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def variableOutput(alg, params, nocats=True):
9292
continue
9393

9494
out = alg.getOutputValue(outputName)
95-
command = u"v.out.ogr {} type={} layer={} -s -e input={} output=\"{}\" format=ESRI_Shapefile output_layer={}".format(
95+
command = u"v.out.ogr {} type={} layer={} -s -e input={} output=\"{}\" format=ESRI_Shapefile output_layer={} --overwrite".format(
9696
u"" if typeList[0] == u"line" and nocats else u"-c",
9797
typeList[0],
9898
typeList[1],

0 commit comments

Comments
 (0)