Skip to content

Commit

Permalink
Fix line length.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseCovaOS authored and tokejepsen committed Feb 26, 2024
1 parent 5d31cdf commit 24f0511
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/ayon_core/tools/publisher/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -2335,7 +2335,11 @@ def run_action(self, plugin_id, action_id):
"title": "Action failed",
"message": "Action failed.",
"traceback": "".join(
traceback.format_exception(type(exception), exception, exception.__traceback__)
traceback.format_exception(
type(exception),
exception,
exception.__traceback__
)
),
"label": action.__name__,
"identifier": action.id
Expand Down

0 comments on commit 24f0511

Please sign in to comment.