diff --git a/packit_service/worker/github_handlers.py b/packit_service/worker/github_handlers.py index f2763a5ca..498af2f7d 100644 --- a/packit_service/worker/github_handlers.py +++ b/packit_service/worker/github_handlers.py @@ -213,11 +213,13 @@ def run(self) -> HandlerResults: if errors: branch_errors = "\n".join( - f"- '{branch}: `{err}`" for branch, err in errors.items() + f"| `{branch}` | `{err}` |" for branch, err in errors.items() ) body_msg = ( f"Packit failed on creating pull-requests in dist-git:\n\n" + f"| dist-git branch | error |\n" + f"| --------------- | ----- |\n" f"{branch_errors}\n\n" "You can re-trigger the update by adding `/packit propose-update`" " to the issue comment.\n"