Skip to content

Commit

Permalink
Pass correct arguments to function.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseCovaOS authored and tokejepsen committed Feb 26, 2024
1 parent 285fb36 commit 5d31cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_core/tools/publisher/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -2335,7 +2335,7 @@ def run_action(self, plugin_id, action_id):
"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
Expand Down

0 comments on commit 5d31cdf

Please sign in to comment.