From f682e0e2612161f1245529b894f87ea1a1db09ff Mon Sep 17 00:00:00 2001 From: miruka Date: Wed, 7 Oct 2020 19:38:14 -0400 Subject: [PATCH] Fix onLoopException calling showError incorrectly --- src/gui/PythonBridge/EventHandlers.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/PythonBridge/EventHandlers.qml b/src/gui/PythonBridge/EventHandlers.qml index 79c05b5c..96850f79 100644 --- a/src/gui/PythonBridge/EventHandlers.qml +++ b/src/gui/PythonBridge/EventHandlers.qml @@ -60,7 +60,7 @@ QtObject { function onLoopException(message, error, traceback) { // No need to log these here, the asyncio exception handler does it const type = py.getattr(py.getattr(error, "__class__"), "__name__") - py.showError(type, traceback, message) + py.showError(type, traceback, "", message) } function onModelItemSet(syncId, indexThen, indexNow, changedFields) {