From aa22d7669996abd575b39656ade8cf3fc33e2072 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 4 Aug 2025 20:28:54 +0100 Subject: [PATCH] Bug fix web page title in email --- check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check.py b/check.py index 16084c2..40d6575 100755 --- a/check.py +++ b/check.py @@ -248,7 +248,7 @@ class Conference: else: body = f"{self.name}\n{self.url} redirects to {redirect_to_url}\n" - body += "Web page title: {msg}{og}" "" + body += f"Web page title: {msg}{og}" "" send_mail(f"Conference site live: {self.name} - {self.year}", body) return True