Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix validity mask filename quoting in Fillnodata alg
Fixes a bug similar to #33562
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Dec 31, 2019
1 parent fbca364 commit 19465c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/algs/gdal/fillnodata.py
Expand Up @@ -133,7 +133,8 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):

mask = self.parameterAsRasterLayer(parameters, self.MASK_LAYER, context)
if mask:
arguments.append('-mask {}'.format(mask.source()))
arguments.append('-mask')
arguments.append(mask.source())

out = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
self.setOutputValue(self.OUTPUT, out)
Expand Down

0 comments on commit 19465c6

Please sign in to comment.