From e0439dc667a7d4c511adc1f3ba390cadce1dfa5f Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Tue, 4 Jun 2024 19:05:19 +0200 Subject: [PATCH] Use correct quotes --- hedgedoc-expire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hedgedoc-expire.py b/hedgedoc-expire.py index b18ace8..857881c 100644 --- a/hedgedoc-expire.py +++ b/hedgedoc-expire.py @@ -69,7 +69,7 @@ class EmailSender: except Exception as e: print(f'Unable to send mail through {self}: {e}') raise e - print(f'Report email to {message['To']} sent successfully.') + print(f'Report email to {message["To"]} sent successfully.') def __str__(self): return f'EmailSender<{self.hostname},{self.port},{self.username},{self.mail_from}>'