Skip to content

Commit

Permalink
Merge pull request #1680 from tmizu23/r_utils
Browse files Browse the repository at this point in the history
fix Empty console Output on R under processing. refs #7643
  • Loading branch information
volaya committed Jan 21, 2015
2 parents f5b10ba + 61b0291 commit 4549a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/r/RUtils.py
Expand Up @@ -124,7 +124,7 @@ def createConsoleOutput():
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:
Expand Down

0 comments on commit 4549a38

Please sign in to comment.