Skip to content

Commit 7f1ff08

Browse files
authored
Merge pull request #4116 from ghtmtt/r_prov
[processing] small fix for R provider
2 parents cdb35d6 + f999970 commit 7f1ff08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/r/RAlgorithm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def parseDescription(self, lines):
116116
self.passFileNames = False
117117
self.verboseCommands = []
118118
ender = 0
119-
line = lines.next().strip('\n').strip('\r')
119+
line = next(lines).strip('\n').strip('\r')
120120
while ender < 10:
121121
if line.startswith('##'):
122122
try:

0 commit comments

Comments
 (0)