Skip to content

Commit

Permalink
[processing] correctly build multiple input value string
Browse files Browse the repository at this point in the history
It was wrongly using comma instead of semicolon to separate values

Fixes #13114
  • Loading branch information
volaya committed Sep 24, 2015
1 parent 1340f4d commit 216e461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/GeoAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ def resolveDataObjects(self):
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,
Expand Down

0 comments on commit 216e461

Please sign in to comment.