Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[BUGFIX][Processing] RScript: Add name token
  • Loading branch information
rldhont committed Jun 6, 2016
1 parent 87beec0 commit 601af0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/plugins/processing/algs/r/RAlgorithm.py
Expand Up @@ -151,7 +151,10 @@ def processParameterLine(self, line):
tokens = line.split('=')
desc = self.createDescriptiveName(tokens[0])
if tokens[1].lower().strip() == 'group':
self.group = tokens[0]
self.group = self.i18n_group = tokens[0]
return
if tokens[1].lower().strip() == 'name':
self.name = self.i18n_name = tokens[0]
return

if tokens[1].lower().strip().startswith('output'):
Expand Down

0 comments on commit 601af0e

Please sign in to comment.