Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing][grass] Fix output type for v.edit
(cherry-picked from eca775f)
  • Loading branch information
nyalldawson committed Jul 25, 2018
1 parent 35ee5f2 commit ce689e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/ext/v_edit.py
Expand Up @@ -60,4 +60,4 @@ def processOutputs(alg, parameters, context, feedback):
fileName = alg.parameterAsOutputLayer(parameters, 'output', context)
grassName = alg.exportedLayers['map']
dataType = 'auto'
alg.exportVectorLayer(grassName, fileName, dataType)
alg.exportVectorLayer(grassName, fileName, dataType=dataType)

0 comments on commit ce689e7

Please sign in to comment.