mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 17:04:54 +01:00
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:
commit
b49e4245db
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue