Skip to content

Commit 216e461

Browse files
committedSep 24, 2015
[processing] correctly build multiple input value string
It was wrongly using comma instead of semicolon to separate values Fixes #13114
1 parent 1340f4d commit 216e461

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ def resolveDataObjects(self):
435435
if layer.name() == inputlayer:
436436
inputlayers[i] = layer.source()
437437
break
438-
param.setValue(",".join(inputlayers))
438+
param.setValue(";".join(inputlayers))
439439

440440
def checkInputCRS(self):
441441
"""It checks that all input layers use the same CRS. If so,

0 commit comments

Comments
 (0)
Please sign in to comment.