fix Empty console Output on R under processing. refs #7643

This commit is contained in:
Takayuki Mizutani 2014-11-09 12:40:03 +09:00
parent 5d1dde034e
commit 61b0291042

View File

@ -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: