Skip to content

Commit 61b0291

Browse files
committedNov 9, 2014
fix Empty console Output on R under processing. refs #7643
1 parent 5d1dde0 commit 61b0291

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.