Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed #5822
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@257 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jun 21, 2012
1 parent ef82ced commit 1742c6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sextante/saga/SagaUtils.py
Expand Up @@ -75,7 +75,8 @@ def executeSaga(progress):
s = "".join([x for x in line if x.isdigit()])
progress.setPercentage(int(s))
else:
if line!="/" and line!="-" and line !="\\":
line = line.strip()
if line!="/" and line!="-" and line !="\\" and line!="|":
loglines.append(line)
SextanteLog.addToLog(SextanteLog.LOG_INFO, loglines)

Expand Down

0 comments on commit 1742c6e

Please sign in to comment.