Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mask parameter was wrongly set. Fixes #19409
  • Loading branch information
luipir committed Jul 13, 2018
1 parent ade3325 commit 95246e7
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 95246e7

Please sign in to comment.