mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
Removed extraneous paren
This commit is contained in:
parent
7bdf1059bf
commit
3adad29021
@ -197,7 +197,7 @@ class Todo(callbacks.Privmsg):
|
|||||||
cursor.execute("""SELECT id FROM todo
|
cursor.execute("""SELECT id FROM todo
|
||||||
WHERE added_at=%s AND userid=%s""", now, id)
|
WHERE added_at=%s AND userid=%s""", now, id)
|
||||||
todoId = cursor.fetchone()[0]
|
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):
|
def remove(self, irc, msg, args):
|
||||||
"""<task id>
|
"""<task id>
|
||||||
|
Loading…
Reference in New Issue
Block a user