Navigation Menu

Skip to content

Commit

Permalink
Fix python error
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 10, 2017
1 parent 08b189d commit feacb76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchAlgorithmDialog.py
Expand Up @@ -104,7 +104,7 @@ def accept(self):
count_visible_outputs += 1
widget = self.mainWidget.tblParameters.cellWidget(row, col)
text = widget.getValue()
if param.checkValueIsAcceptable(text, context):
if out.checkValueIsAcceptable(text, context):
if isinstance(out, (QgsProcessingParameterRasterDestination,
QgsProcessingParameterFeatureSink)):
# load rasters and sinks on completion
Expand Down

0 comments on commit feacb76

Please sign in to comment.