Skip to content

Commit 53204c8

Browse files
committedOct 1, 2016
[processing] fixed multiple fields input in R algorithms
1 parent b01d3b0 commit 53204c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/r/RAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def processInputParameterToken(self, token, name):
243243
found = True
244244
break
245245
if found:
246-
param = ParameterTableMultipleField(token, desc, field)
246+
param = ParameterTableMultipleField(name, desc, field)
247247
elif token.lower().strip() == 'extent':
248248
param = ParameterExtent(name, desc)
249249
elif token.lower().strip() == 'point':

0 commit comments

Comments
 (0)
Please sign in to comment.