We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da65e54 commit 3039f13Copy full SHA for 3039f13
python/plugins/processing/modeler/ModelerAlgorithm.py
@@ -386,7 +386,9 @@ def prepareAlgorithm(self, alg):
386
if not param.setValue(value) and not isinstance(param,
387
ParameterDataObject):
388
raise GeoAlgorithmExecutionException(
389
- self.tr('Wrong value: %s', 'ModelerAlgorithm') % value)
+ self.tr('Wrong value %s for %s %s', 'ModelerAlgorithm')
390
+ % (value, param.__class__.__name__, param.name))
391
+
392
for out in algInstance.outputs:
393
if not out.hidden:
394
if out.name in alg.outputs:
0 commit comments