Write lastrun file even if modifications were made

This commit is contained in:
Lucas Verney 2018-12-14 10:52:03 +01:00
parent dcc774b92f
commit 6a6c8f88a6
1 changed files with 9 additions and 10 deletions

View File

@ -46,16 +46,15 @@ for (k, url) in URLS.items():
dump = json.dumps(data, sort_keys=True,
indent=4, separators=(',', ': '))
try:
with open('lastrun.json', 'r') as fh:
lastrun = fh.read()
# If something changed, print the fetched data and exit 1 to ensure chronic
# sends an email.
if lastrun != dump:
print(dump)
sys.exit(1)
except IOError:
pass
with open('lastrun.json', 'r') as fh:
lastrun = fh.read()
with open('lastrun.json', 'w') as fh:
fh.write(dump)
# If something changed, print the fetched data and exit 1 to ensure chronic
# sends an email.
if lastrun != dump:
print(dump)
sys.exit(1)