From 1499be26c19eab4ae7071b1470801241b7f13bd5 Mon Sep 17 00:00:00 2001 From: William Kray Date: Mon, 12 Jun 2023 09:11:12 -0700 Subject: [PATCH] update wording of report for clarity --- kickbot/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kickbot/bot.py b/kickbot/bot.py index f0b0d9f..e62b390 100644 --- a/kickbot/bot.py +++ b/kickbot/bot.py @@ -174,9 +174,9 @@ class KickBot(Plugin): async def get_report(self, evt: MessageEvent) -> None: sync_results = await self.do_sync() report = await self.generate_report() - await evt.respond(f"Users inactive for {self.config['warn_threshold_days']} days:
\ + await evt.respond(f"Users inactive for at least {self.config['warn_threshold_days']} days:
\ {'
'.join(report['warn_inactive'])}
\ - Users inactive for {self.config['kick_threshold_days']} days:
\ + Users inactive for at least {self.config['kick_threshold_days']} days:
\ {'
'.join(report['kick_inactive'])}", \ allow_html=True)