Skip to content

Commit 4549a38

Browse files
committedJan 21, 2015
Merge pull request #1680 from tmizu23/r_utils
fix Empty console Output on R under processing. refs #7643
2 parents f5b10ba + 61b0291 commit 4549a38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/r/RUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def createConsoleOutput():
124124
if os.path.exists(RUtils.getConsoleOutputFilename()):
125125
lines = open(RUtils.getConsoleOutputFilename())
126126
for line in lines:
127-
line = line.strip('\n').strip(' ')
127+
line = line.strip().strip(' ')
128128
if line.startswith('>'):
129129
line = line[1:].strip(' ')
130130
if line in RUtils.verboseCommands:

0 commit comments

Comments
 (0)
Please sign in to comment.