1
0
Fork 0
mirror of synced 2024-05-19 20:12:30 +12:00

Fixed syntax error

This commit is contained in:
Phxntxm 2016-07-15 14:10:09 -05:00
parent 85a37094e2
commit 308ad3cb21

View file

@ -122,7 +122,7 @@ class Mod:
cursor.execute(sql,(command,permissions))
else:
sql = "update `"+ctx.message.server.id+"` set perms=%s where command=%s"
cursor.execute(,(perms,command))
cursor.execute(sql,(perms,command))
config.closeConnection()
except: