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)