Skip to content

Commit

Permalink
fix blind addition of line
Browse files Browse the repository at this point in the history
  • Loading branch information
kalessin committed Dec 2, 2024
1 parent 326376b commit f23d571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shub_workflow/contrib/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ def send_slack_messages(self, messages: List[str], subject: str, attachments=Non
f"{title}\n\n"
"Alert Reasons:\n"
f"{message['failure_reasons']}\n\n"
f"Job Link: {message.get('job_link', 'N/A')}"
f"-------------------------------------"
f"Job Link: {message.get('job_link', 'N/A')}\n"
"-------------------------------------"
)
if self.slack_handler.fake:
message["failure_reasons"] = messages
Expand Down

0 comments on commit f23d571

Please sign in to comment.