Skip to content

Commit

Permalink
#339 Addressed review comment [CodeBuild]
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 28, 2024
1 parent a729cbd commit 1b5dc48
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@
" if isinstance(e.__cause__, TaskFailures):\n",
" err_message = f'{e.msg} {e.__cause__}'\n",
" elif e.inner:\n",
" err_message = f'{e.msg} This was caused by {\", \".join(e.inner)}'\n",
" causes = '\\n'.join(e.inner)\n",
" err_message = f'{e.msg} This was caused by\\n{causes}'\n",
" else:\n",
" err_message = e.msg\n",
" else:\n",
Expand Down

0 comments on commit 1b5dc48

Please sign in to comment.