Skip to content

Commit

Permalink
[processing] small fix to R provider
Browse files Browse the repository at this point in the history
  • Loading branch information
ghtmtt committed Feb 8, 2017
1 parent 2f68d1a commit f999970
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 @@ -116,7 +116,7 @@ def parseDescription(self, lines):
self.passFileNames = False
self.verboseCommands = []
ender = 0
line = lines.next().strip('\n').strip('\r')
line = next(lines).strip('\n').strip('\r')
while ender < 10:
if line.startswith('##'):
try:
Expand Down

0 comments on commit f999970

Please sign in to comment.