Skip to content

Commit 1742c6e

Browse files
author
volayaf
committed
fixed #5822
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@257 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent ef82ced commit 1742c6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sextante/saga/SagaUtils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ def executeSaga(progress):
7575
s = "".join([x for x in line if x.isdigit()])
7676
progress.setPercentage(int(s))
7777
else:
78-
if line!="/" and line!="-" and line !="\\":
78+
line = line.strip()
79+
if line!="/" and line!="-" and line !="\\" and line!="|":
7980
loglines.append(line)
8081
SextanteLog.addToLog(SextanteLog.LOG_INFO, loglines)
8182

0 commit comments

Comments
 (0)