[processing] correctly build multiple input value string

It was wrongly using comma instead of semicolon to separate values

Fixes #13114
This commit is contained in:
volaya 2015-09-24 13:09:10 +02:00
parent 1340f4d4f1
commit 216e461246

View File

@ -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,