We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 3334068 commit f095269Copy full SHA for f095269
src/sextante/core/SextanteLog.py
@@ -28,7 +28,7 @@ def logFilename():
28
29
@staticmethod
30
def addToLog(msgtype, msg):
31
- #try: #it seems that this fails sometimes depending on the msg added:
+ try: #it seems that this fails sometimes depending on the msg added:
32
#To avoid it stopping the normal functioning of the algorithm,
33
#we catch all errors, assuming that is better to miss some log info
34
#that breaking the algorithm.
@@ -47,7 +47,7 @@ def addToLog(msgtype, msg):
47
algname = algname[:algname.index("\"")]
48
if algname not in SextanteLog.recentAlgs:
49
SextanteLog.recentAlgs.append(algname)
50
- #except:
+ except:
51
pass
52
53
0 commit comments