Skip to content

Commit

Permalink
formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed May 17, 2023
1 parent e4a4533 commit d4e7d27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions openpype/tools/publisher/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,10 +397,11 @@ def _extract_log_items(self, result):
exception = result.get("error")
if exception:
fname, line_no, func, exc = exception.traceback
# Action result does not have 'is_validation_error'
is_validation_error = result.get("is_validation_error", False)
output.append({
"type": "error",
# Action result does not have 'is_validation_error'
"is_validation_error": result.get("is_validation_error", False),
"is_validation_error": is_validation_error,
"msg": str(exception),
"filename": str(fname),
"lineno": str(line_no),
Expand Down

0 comments on commit d4e7d27

Please sign in to comment.