A few small cleanup items
This commit is contained in:
parent
a263f5cb93
commit
0a22cfe4ee
1 changed files with 7 additions and 11 deletions
18
discorss.py
18
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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue