Skip to content

Commit

Permalink
[processing] fixed multiple fields input in R algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 1, 2016
1 parent b01d3b0 commit 53204c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/r/RAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def processInputParameterToken(self, token, name):
found = True
break
if found:
param = ParameterTableMultipleField(token, desc, field)
param = ParameterTableMultipleField(name, desc, field)
elif token.lower().strip() == 'extent':
param = ParameterExtent(name, desc)
elif token.lower().strip() == 'point':
Expand Down

0 comments on commit 53204c8

Please sign in to comment.