We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d1dde0 commit 61b0291Copy full SHA for 61b0291
python/plugins/processing/algs/r/RUtils.py
@@ -124,7 +124,7 @@ def createConsoleOutput():
124
if os.path.exists(RUtils.getConsoleOutputFilename()):
125
lines = open(RUtils.getConsoleOutputFilename())
126
for line in lines:
127
- line = line.strip('\n').strip(' ')
+ line = line.strip().strip(' ')
128
if line.startswith('>'):
129
line = line[1:].strip(' ')
130
if line in RUtils.verboseCommands:
0 commit comments