mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
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:
commit
4a785268c8
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue