bot: Remove the header.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 18m7s

This commit is contained in:
Cory McWilliams 2024-11-11 08:19:46 -05:00
parent 44ebb841f0
commit db4997fdc4

View File

@ -44,7 +44,7 @@ cutoff = state.get('last_update') or (time.time() - 2 * 7 * 24 * 60 * 60)
entries = [entry for entry in get_entries() if entry[0] > cutoff]
if entries:
text = '# Recent Secure Scuttlebutt Development Activity\n\n' + '\n'.join([f' * [{entry[1]}] [{entry[3]}]({entry[2]})' for entry in entries])
text = '\n'.join([f' * [{entry[1]}] [{entry[3]}]({entry[2]})' for entry in entries])
state['last_update'] = entries[0][0]
if args.state_file:
content = json.dumps({'type': 'post', 'text': text, 'mentions': []})