Removed extraneous paren

This commit is contained in:
James Vega 2003-11-30 17:56:39 +00:00
parent 7bdf1059bf
commit 3adad29021
1 changed files with 1 additions and 1 deletions

View File

@ -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>