Skip to content

Commit

Permalink
Always add newline before email footer
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsasha committed Sep 27, 2024
1 parent ef03f75 commit c6398ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irrd/utils/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def send_email(recipient, subject, body) -> None:
recipient = get_setting("email.recipient_override")

logger.debug(f"Sending email to {recipient}, subject {subject}")
body += get_setting("email.footer")
body += "\n" + get_setting("email.footer")
hostname = socket.gethostname()
body += f"\n\nGenerated by IRRd version {__version__} on {hostname}"

Expand Down

0 comments on commit c6398ea

Please sign in to comment.