A few small cleanup items

This commit is contained in:
A.M. Rowsell 2025-02-25 20:57:40 -05:00
parent a263f5cb93
commit 0a22cfe4ee
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9

View file

@ -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