Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix Empty console Output on R under processing. refs #7643
  • Loading branch information
tmizu23 committed Nov 9, 2014
1 parent 5d1dde0 commit 61b0291
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 61b0291

Please sign in to comment.