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
|
# TODO: make the character limit smarter, as to split at a natural point
|
||||||
def get_description(feed):
|
def get_description(feed):
|
||||||
try:
|
try:
|
||||||
temporary_string = str(feed.entries[0]["summary_detail"]["value"])
|
temporary_string = str(feed["summary_detail"]["value"])
|
||||||
temporary_string = html_filter.sub("", temporary_string)
|
temporary_string = html_filter.sub("", temporary_string)
|
||||||
desc = (
|
desc = (
|
||||||
temporary_string[:250] if len(temporary_string) > 250 else temporary_string
|
temporary_string[:250] if len(temporary_string) > 250 else temporary_string
|
||||||
)
|
)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
temporary_string = str(feed.entries[0]["description"])
|
temporary_string = str(feed["description"])
|
||||||
temporary_string = html_filter.sub("", temporary_string)
|
temporary_string = html_filter.sub("", temporary_string)
|
||||||
desc = (
|
desc = (
|
||||||
temporary_string[:250] if len(temporary_string) > 250 else temporary_string
|
temporary_string[:250] if len(temporary_string) > 250 else temporary_string
|
||||||
|
@ -186,15 +186,11 @@ def main():
|
||||||
logger.error(
|
logger.error(
|
||||||
"Error %d while trying to post %s", r.status_code, hook["webhook"]
|
"Error %d while trying to post %s", r.status_code, hook["webhook"]
|
||||||
)
|
)
|
||||||
if r.status_code not in success_codes:
|
|
||||||
print(
|
# End of feed loop
|
||||||
"Error {} while trying to post {}".format(
|
app_config["lastupdate"] = now
|
||||||
r.status_code, hook["webhook"]
|
with open(config_file_path, "w") as config_file:
|
||||||
)
|
json.dump(app_config, config_file, indent=4)
|
||||||
)
|
|
||||||
app_config["lastupdate"] = now
|
|
||||||
with open(config_file_path, "w") as config_file:
|
|
||||||
json.dump(app_config, config_file, indent=4)
|
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue