From 216e461246df0b0711a8eb992acb88db870fdfd1 Mon Sep 17 00:00:00 2001 From: volaya Date: Thu, 24 Sep 2015 13:09:10 +0200 Subject: [PATCH] [processing] correctly build multiple input value string It was wrongly using comma instead of semicolon to separate values Fixes #13114 --- python/plugins/processing/core/GeoAlgorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/core/GeoAlgorithm.py b/python/plugins/processing/core/GeoAlgorithm.py index c0c7b3cf09f..c90fb052389 100644 --- a/python/plugins/processing/core/GeoAlgorithm.py +++ b/python/plugins/processing/core/GeoAlgorithm.py @@ -435,7 +435,7 @@ class GeoAlgorithm: if layer.name() == inputlayer: inputlayers[i] = layer.source() break - param.setValue(",".join(inputlayers)) + param.setValue(";".join(inputlayers)) def checkInputCRS(self): """It checks that all input layers use the same CRS. If so,