1
0
mirror of https://github.com/Mikaela/Limnoria.git synced 2025-04-09 01:18:10 +02:00

Removed extraneous paren

This commit is contained in:
James Vega 2003-11-30 17:56:39 +00:00
parent 7bdf1059bf
commit 3adad29021

@ -197,7 +197,7 @@ class Todo(callbacks.Privmsg):
cursor.execute("""SELECT id FROM todo
WHERE added_at=%s AND userid=%s""", now, id)
todoId = cursor.fetchone()[0]
irc.reply(msg, '%s (Todo #%s added)' % (conf.replySuccess, todoId)))
irc.reply(msg, '%s (Todo #%s added)' % (conf.replySuccess, todoId))
def remove(self, irc, msg, args):
"""<task id>