We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 8e60f49 commit ad2d944Copy full SHA for ad2d944
python/plugins/processing/algs/saga/SagaAlgorithm.py
@@ -369,10 +369,12 @@ def checkParameterValuesBeforeExecuting(self):
369
"""
370
extent = None
371
for param in self.parameters:
372
+ files = []
373
if isinstance(param, ParameterRaster):
374
files = [param.value]
375
elif isinstance(param, ParameterMultipleInput) and param.datatype == ParameterMultipleInput.TYPE_RASTER:
- files = param.value.split(";")
376
+ if param.value is not None:
377
+ files = param.value.split(";")
378
for f in files:
379
layer = dataobjects.getObjectFromUri(f)
380
if layer is None:
0 commit comments