From 7f0d31f4a5385dca126fbca6a914030cf1a8352a Mon Sep 17 00:00:00 2001 From: raatty Date: Fri, 15 Jun 2018 20:14:08 +1200 Subject: [PATCH] i forgot an f ops --- src/cogs/bot_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cogs/bot_management.py b/src/cogs/bot_management.py index 8fdea45..2cf7e96 100644 --- a/src/cogs/bot_management.py +++ b/src/cogs/bot_management.py @@ -98,7 +98,7 @@ class BotManager: usr = ctx.author bots = await self.bot.db_con.fetch('select * from bots where owner = $1', usr.id) if bots: - em = discord.Embed(title='{usr.display_name} has claimed the following bots:', + em = discord.Embed(title=f'{usr.display_name} has claimed the following bots:', colour=self.bot.embed_color) for bot in bots: member = ctx.guild.get_member(int(bot['id']))