mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
fix Empty console Output on R under processing. refs #7643
This commit is contained in:
parent
5d1dde034e
commit
61b0291042
@ -124,7 +124,7 @@ class RUtils:
|
||||
if os.path.exists(RUtils.getConsoleOutputFilename()):
|
||||
lines = open(RUtils.getConsoleOutputFilename())
|
||||
for line in lines:
|
||||
line = line.strip('\n').strip(' ')
|
||||
line = line.strip().strip(' ')
|
||||
if line.startswith('>'):
|
||||
line = line[1:].strip(' ')
|
||||
if line in RUtils.verboseCommands:
|
||||
|
Loading…
x
Reference in New Issue
Block a user