diff --git a/src/lvmapi/tools/notifications.py b/src/lvmapi/tools/notifications.py index bdb2966..c44560c 100644 --- a/src/lvmapi/tools/notifications.py +++ b/src/lvmapi/tools/notifications.py @@ -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, @@ -252,7 +250,7 @@ async def send_critical_error_email(message: str): {message} - """ +""" msg.attach(MIMEText(plaintext_email, "plain")) html = MIMEText(html_message, "html")