From b8c25251dfdcab210099e67d68da8713687a500a Mon Sep 17 00:00:00 2001 From: radosuav Date: Wed, 18 Feb 2015 13:22:06 +0100 Subject: [PATCH] [Processing] Fix bug in reading ParameterMultipleInput in OTB algorithms. --- python/plugins/processing/algs/otb/OTBAlgorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/algs/otb/OTBAlgorithm.py b/python/plugins/processing/algs/otb/OTBAlgorithm.py index 9b29e1bb0f3..bdfc6dc1cb2 100644 --- a/python/plugins/processing/algs/otb/OTBAlgorithm.py +++ b/python/plugins/processing/algs/otb/OTBAlgorithm.py @@ -267,7 +267,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)