Skip to content

Commit f095269

Browse files
author
volayaf
committedJul 26, 2012
uncommented try block
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@315 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent 3334068 commit f095269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/sextante/core/SextanteLog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def logFilename():
2828

2929
@staticmethod
3030
def addToLog(msgtype, msg):
31-
#try: #it seems that this fails sometimes depending on the msg added:
31+
try: #it seems that this fails sometimes depending on the msg added:
3232
#To avoid it stopping the normal functioning of the algorithm,
3333
#we catch all errors, assuming that is better to miss some log info
3434
#that breaking the algorithm.
@@ -47,7 +47,7 @@ def addToLog(msgtype, msg):
4747
algname = algname[:algname.index("\"")]
4848
if algname not in SextanteLog.recentAlgs:
4949
SextanteLog.recentAlgs.append(algname)
50-
#except:
50+
except:
5151
pass
5252

5353

0 commit comments

Comments
 (0)
Please sign in to comment.