Skip to content

Commit

Permalink
Mask parameter was wrongly set. Fixes #19409
Browse files Browse the repository at this point in the history
  • Loading branch information
luipir authored and nyalldawson committed Jul 15, 2018
1 parent 0e0a01a commit b9e5f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/fillnodata.py
Expand Up @@ -113,7 +113,7 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):
if self.parameterAsBool(parameters, self.NO_MASK, context):
arguments.append('-nomask')

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

Expand Down

0 comments on commit b9e5f4a

Please sign in to comment.