From 1ac6b7c94095c56c893c58910335ef57f386d5b4 Mon Sep 17 00:00:00 2001 From: Stefan Sterz Date: Sun, 1 Oct 2023 22:20:15 +0200 Subject: [PATCH] fix: properly comment out comment a "#" somehow got accidentally remove which yielded syntax errors when executing the script. --- wichteln.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wichteln.py b/wichteln.py index 9722439..8eccc43 100644 --- a/wichteln.py +++ b/wichteln.py @@ -53,7 +53,7 @@ def secret_santa_matching(participants: list) -> list: def send_secret_santa_mails(participants: list, config: dict): - open smtp connection + # open smtp connection server = smtplib.SMTP(config['server'], config['port']) server.ehlo() server.starttls()