Skip to content

Commit dde48b5

Browse files
committedMay 1, 2017
[processing] Fix invalid logging error
1 parent 79d79d6 commit dde48b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/AlgorithmExecutor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def execute(alg, context=None, feedback=None):
5959
alg.execute(context, feedback)
6060
return True
6161
except GeoAlgorithmExecutionException as e:
62-
QgsMessageLog.logMessage(sys.exc_info()[0], 'Processing', QgsMessageLog.CRITICAL)
62+
QgsMessageLog.logMessage(str(sys.exc_info()[0]), 'Processing', QgsMessageLog.CRITICAL)
6363
if feedback is not None:
6464
feedback.reportError(e.msg)
6565
return False

0 commit comments

Comments
 (0)
Please sign in to comment.