Skip to content

Commit

Permalink
Fix validity mask filename quoting in Sieve and Fillnodata algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and nyalldawson committed Jan 1, 2020
1 parent f7975a1 commit 8d6c030
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 8d6c030

Please sign in to comment.