From d3a20edcf36205cf9a0de1beeb0ae2e208236caf Mon Sep 17 00:00:00 2001 From: phxntxm Date: Tue, 12 Jul 2016 10:56:55 -0500 Subject: [PATCH] Changed back to the normal format for selecting the database --- cogs/core.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cogs/core.py b/cogs/core.py index b908b63..7aba01e 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -142,14 +142,14 @@ class Core: tag = result[0:result.find('-')] result = result[result.find('-') + 2:] cursor = config.getCursor() - cursor.execute("""use %s""", (config.db_default,)) - cursor.execute("""select * from tags where server_id=%s and tag=%s""", (ctx.message.server.id, tag)) + cursor.execute('use {}'.format(config.db_default)) + cursor.execute('select * from tags where server_id=%s and tag=%s', (ctx.message.server.id, tag)) response = cursor.fetchone() if response is not None: await self.bot.say('That tag already exists! Please remove it and re-add it!') config.closeConnection() return - sql = """insert into tags (server_id, tag, result) values (%s, %s, %s)""" + 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)) config.closeConnection() @@ -158,7 +158,7 @@ class Core: @commands.has_permissions(kick_members=True) async def del_tag(self, ctx, tag: str): cursor = config.getCursor() - cursor.execute('use %s', (config.db_default,)) + cursor.execute('use {}'.format(config.db_default)) cursor.execute('select * from tags where server_id=%s and tag=%s', (ctx.message.server.id, tag)) result = cursor.fetchone() if result is None: @@ -169,5 +169,6 @@ class Core: await self.bot.say('I have just removed the tag {}'.format(tag)) config.closeConnection() + def setup(bot): bot.add_cog(Core(bot))