Merge pull request #120 from ynput/bugfix/OP-6234_action_failed_window_doesnt_show_up

Publisher: "Action Failed" is working
This commit is contained in:
Jakub Trllo 2024-02-26 18:41:22 +01:00 committed by GitHub
commit 4a785268c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2335,7 +2335,11 @@ class PublisherController(BasePublisherController):
"title": "Action failed",
"message": "Action failed.",
"traceback": "".join(
traceback.format_exception(exception)
traceback.format_exception(
type(exception),
exception,
exception.__traceback__
)
),
"label": action.__name__,
"identifier": action.id