Skip to content

Commit

Permalink
Remove test print
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Nov 28, 2024
1 parent b77ed35 commit c6ae5c5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lvmapi/tools/notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,6 @@ async def send_critical_error_email(message: str):
template = root / config["notifications.critical.email_template"]
loader = FileSystemLoader(template.parent)

print(template, template.parent)

env = Environment(
loader=loader,
lstrip_blocks=True,
Expand Down Expand Up @@ -252,7 +250,7 @@ async def send_critical_error_email(message: str):
{message}
"""
"""
msg.attach(MIMEText(plaintext_email, "plain"))

html = MIMEText(html_message, "html")
Expand Down

0 comments on commit c6ae5c5

Please sign in to comment.