Merge pull request #6236 from JoseCaraballoOS/bugfix/OP-6234_action_failed_window_doesnt_show_up

Bugfix - Fix "Action Failed" window not showing
This commit is contained in:
Jakub Trllo 2024-02-26 18:40:30 +01:00 committed by GitHub
commit b49e4245db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2337,7 +2337,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