From 361e47cf3b5e8b102e22cae74b1cea771ac6e162 Mon Sep 17 00:00:00 2001 From: Joscha Date: Thu, 26 May 2016 23:50:35 +0200 Subject: [PATCH] Fix !info bot counter --- infobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infobot.py b/infobot.py index 8c9774c..7fe4863 100644 --- a/infobot.py +++ b/infobot.py @@ -93,7 +93,7 @@ class InfoBot(yaboli.Bot): else: people = len(self.room.get_people()) accounts = len(self.room.get_accounts()) - bots = len(self.room.get_bots()) + bots = len(self.room.get_bots()) + 1 lurkers = len(self.room.get_lurkers()) msg = "people: {} (with accounts: {})\nbots: {}\nlurkers: {}\ntotal: {}"