From 647fd5b1519622b3fdcc21edc90864f0139169da Mon Sep 17 00:00:00 2001 From: phxntxm Date: Tue, 12 Jul 2016 11:51:53 -0500 Subject: [PATCH] Missing a } for formatting, added that --- cogs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/core.py b/cogs/core.py index e44c536..9dc937f 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -156,7 +156,7 @@ class Core: return sql = 'insert into tags (server_id, tag, result) values (%s, %s, %s)' cursor.execute(sql, (ctx.message.server.id, tag, result)) - await self.bot.say("I have just added the tag {0! You can call this tag by entering !tag {0}".format(tag)) + await self.bot.say("I have just added the tag {0}! You can call this tag by entering !tag {0}".format(tag)) config.closeConnection() @tag.command(name='delete', aliases=['remove', 'stop'], pass_context=True)