From 4a2e115381695c77bb54eadd2b3b3adc82314936 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 24 May 2016 23:40:34 +0200 Subject: [PATCH] Change formatting of bot names in bot listing --- yaboli/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaboli/bot.py b/yaboli/bot.py index 66de041..c7518d5 100644 --- a/yaboli/bot.py +++ b/yaboli/bot.py @@ -177,7 +177,7 @@ class Bot(): for bot_id in sorted(bots): bot = bots[bot_id] - msg += "\n{} - @{} ({})".format(bot_id, bot.nick(), bot.creation_info()) + msg += "\n{} - @{} ({})".format(bot_id, bot.mentionable(), bot.creation_info()) self.room.send_message(msg, parent=message.id)