From 0a22cfe4ee8d3417dd682da1fd7d002e6afaa07c Mon Sep 17 00:00:00 2001 From: "A.M. Rowsell" Date: Tue, 25 Feb 2025 20:57:40 -0500 Subject: [PATCH] A few small cleanup items --- discorss.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/discorss.py b/discorss.py index 94d3dec..357537c 100755 --- a/discorss.py +++ b/discorss.py @@ -43,13 +43,13 @@ app_config = {} # TODO: make the character limit smarter, as to split at a natural point def get_description(feed): try: - temporary_string = str(feed.entries[0]["summary_detail"]["value"]) + temporary_string = str(feed["summary_detail"]["value"]) temporary_string = html_filter.sub("", temporary_string) desc = ( temporary_string[:250] if len(temporary_string) > 250 else temporary_string ) except KeyError: - temporary_string = str(feed.entries[0]["description"]) + temporary_string = str(feed["description"]) temporary_string = html_filter.sub("", temporary_string) desc = ( temporary_string[:250] if len(temporary_string) > 250 else temporary_string @@ -186,15 +186,11 @@ def main(): logger.error( "Error %d while trying to post %s", r.status_code, hook["webhook"] ) - if r.status_code not in success_codes: - print( - "Error {} while trying to post {}".format( - r.status_code, hook["webhook"] - ) - ) - app_config["lastupdate"] = now - with open(config_file_path, "w") as config_file: - json.dump(app_config, config_file, indent=4) + + # End of feed loop + app_config["lastupdate"] = now + with open(config_file_path, "w") as config_file: + json.dump(app_config, config_file, indent=4) return