Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #4116 from ghtmtt/r_prov
[processing] small fix for R provider
  • Loading branch information
volaya committed Feb 16, 2017
2 parents cdb35d6 + f999970 commit 7f1ff08
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 7f1ff08

Please sign in to comment.