From feacb7630091969d97ed036b339e27678a382f2b Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Fri, 10 Nov 2017 13:43:50 +1000 Subject: [PATCH] Fix python error --- python/plugins/processing/gui/BatchAlgorithmDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/gui/BatchAlgorithmDialog.py b/python/plugins/processing/gui/BatchAlgorithmDialog.py index 6673560e56d..02fc7f481d1 100644 --- a/python/plugins/processing/gui/BatchAlgorithmDialog.py +++ b/python/plugins/processing/gui/BatchAlgorithmDialog.py @@ -104,7 +104,7 @@ class BatchAlgorithmDialog(AlgorithmDialogBase): 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