Skip to content

Commit

Permalink
[processing] fixed reading script description for R algorithms
Browse files Browse the repository at this point in the history
fixes #16227
  • Loading branch information
volaya committed Mar 2, 2017
1 parent 9c3fa18 commit b500ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/r/RAlgorithm.py
Expand Up @@ -139,7 +139,7 @@ def parseDescription(self, lines):
self.commands.append(line)
self.script += line + '\n'
try:
line = lines.next().strip('\n').strip('\r')
line = next(lines).strip('\n').strip('\r')
except:
break

Expand Down

0 comments on commit b500ab5

Please sign in to comment.