diff --git a/python/plugins/processing/algs/otb/OTBAlgorithm.py b/python/plugins/processing/algs/otb/OTBAlgorithm.py index 656f8b57200..b76a78585b2 100644 --- a/python/plugins/processing/algs/otb/OTBAlgorithm.py +++ b/python/plugins/processing/algs/otb/OTBAlgorithm.py @@ -269,7 +269,7 @@ class OTBAlgorithm(GeoAlgorithm): elif isinstance(param, ParameterMultipleInput): commands.append(param.name) files = str(param.value).split(";") - paramvalue = " ".join(["\"" + f + "\"" for f in files]) + paramvalue = " ".join(["\"" + f + " \"" for f in files]) commands.append(paramvalue) elif isinstance(param, ParameterSelection): commands.append(param.name)