Skip to content

Commit 74728e8

Browse files
committedOct 2, 2017
fix GRASS7 v.rast.stats module
1 parent 1facaef commit 74728e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/grass7/ext/v_rast_stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def processOutputs(alg):
4242
# We need to add the vector layer to outputs:
4343
out = alg.exportedLayers[alg.getParameterValue('map')]
4444
from_out = alg.getOutputValue('output')
45-
command = u"v.out.ogr -s -e input={} output=\"{}\" format=ESRI_Shapefile output_layer={}".format(
45+
command = u"v.out.ogr --overwrite -s -e input={} output=\"{}\" format=ESRI_Shapefile output_layer={}".format(
4646
out, os.path.dirname(from_out),
4747
os.path.splitext(os.path.basename(from_out))[0]
4848
)

0 commit comments

Comments
 (0)
Please sign in to comment.