From 324df6ca6a2aa4dc90a07b1203148c6f741e4f83 Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 23 May 2016 20:33:12 +0200 Subject: [PATCH] Change name format --- infobot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infobot.py b/infobot.py index 71499ad..f65e6fa 100644 --- a/infobot.py +++ b/infobot.py @@ -10,7 +10,7 @@ class InfoBot(yaboli.Bot): super().__init__(*args, **kwargs) self.bot_description = ("This bot displays information about the clients connected to the\n" - "current room in its nick: (pbl)\n" + "current room in its nick: (p b l)\n" "Created by @Garmy using yaboli (Yet Another Bot Library)") self.add_command("info", self.info_command, "Show more detailed info.", @@ -32,7 +32,7 @@ class InfoBot(yaboli.Bot): Change the name to display the correct values. """ - nick = "\001({}p{}b{}l)".format( + nick = "\001({}p {}b {}l)".format( len(self.room.get_people()), len(self.room.get_bots()), len(self.room.get_lurkers())