From 1c78edd38e9cde6b8a615f3033c448430468e9e3 Mon Sep 17 00:00:00 2001 From: "A.M. Rowsell" Date: Wed, 26 Feb 2025 20:12:29 -0500 Subject: [PATCH] Fixed status code checking --- discorss.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/discorss.py b/discorss.py index 67da27d..55b0b98 100755 --- a/discorss.py +++ b/discorss.py @@ -33,7 +33,7 @@ log_file_path = r"/app.log" # Yes, I know you "can't parse HTML with regex", but # just watch me. html_filter = re.compile(r"\<\/?([A-Za-z \:\.\/\"\=])*\>") -success_codes = ["200", "201", "202", "203", "204", "205", "206"] +success_codes = [200, 201, 202, 203, 204, 205, 206] app_config = {} @@ -108,8 +108,7 @@ def main(): last_check = app_config["lastupdate"] except KeyError: last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago - for i, hook in enumerate(app_config["feeds"]): - # Get the feed + for i, hook in enumerate(app_config["feeds"]): # Feed loop start logger.info("Parsing feed %s...", hook["name"]) feeds = feedparser.parse(hook["url"]) latest_post = []