Note to self: Check code after doing copy-paste

master
Sfan5 2014-03-17 20:26:19 +01:00
parent 204379dcb2
commit f48ab28a8e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ def ignore(phenny, input):
antiabuse["ignorelist"].append(arg)
db = sqlite3.connect("antiabuse.sqlite")
c = db.cursor()
c.execute("INSERT INTO tell (nick) VALUES (?)", (arg,))
c.execute("INSERT INTO ignore (nick) VALUES (?)", (arg,))
c.close()
db.commit()
db.close()