Change formatting of bot names in bot listing

This commit is contained in:
Joscha 2016-05-24 23:40:34 +02:00
parent c6bddec530
commit 4a2e115381

View file

@ -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)