mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
[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:
parent
1340f4d4f1
commit
216e461246
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user