Not using f strings anymore

pull/8/head
sgoudham 4 years ago
parent d4c6580db5
commit 6676161a5f

@ -248,8 +248,8 @@ async def on_guild_join(guild):
async with conn.cursor() as cur: async with conn.cursor() as cur:
# Define the insert statement that will insert the user's information # Define the insert statement that will insert the user's information
insert = f"""INSERT INTO members (guildID, discordID) VALUES {records} insert = """INSERT INTO members (guildID, discordID) VALUES {}
ON DUPLICATE KEY UPDATE guildID = VALUES(guildID), discordID = VALUES(discordID)""" ON DUPLICATE KEY UPDATE guildID = VALUES(guildID), discordID = VALUES(discordID)""".format(records)
# Execute the query # Execute the query
await cur.execute(insert) await cur.execute(insert)

Loading…
Cancel
Save