Fixed status code checking
This commit is contained in:
parent
7d84c7c257
commit
1c78edd38e
1 changed files with 2 additions and 3 deletions
|
@ -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 = []
|
||||
|
|
Loading…
Add table
Reference in a new issue