Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
uncommented try block
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@315 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jul 26, 2012
1 parent 3334068 commit f095269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sextante/core/SextanteLog.py
Expand Up @@ -28,7 +28,7 @@ def logFilename():

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


Expand Down

0 comments on commit f095269

Please sign in to comment.