From d69a955b29c09f86603a8aa960009e05b059e7dc Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 7 Sep 2023 16:14:19 +0100 Subject: [PATCH] Update --- check.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/check.py b/check.py index cf2f77a..5f27094 100755 --- a/check.py +++ b/check.py @@ -27,6 +27,7 @@ not_here_list = [ "There is currently no text in this page.", "This page does not exist yet", "404 Not Found", + "500 Internal Server Error", ] conferences = [ @@ -90,8 +91,6 @@ def main(show_not_live: bool = False) -> None: """Check each conference.""" for name, url in conferences: live, msg = check_conference(name, url) - if live or show_not_live: - print(f"{name}: {msg}") if not live: continue body = f"{name}\n{url}\nWeb page title: {msg}"