From ce315d33a1dbbc8c3a5bd0bd414289be5b8188c4 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 22 Jul 2004 02:20:32 +0000 Subject: [PATCH] Forgot a #. --- plugins/Note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Note.py b/plugins/Note.py index 4c59c0546..2c5fd4cde 100644 --- a/plugins/Note.py +++ b/plugins/Note.py @@ -212,7 +212,7 @@ class Note(callbacks.Privmsg): cursor.execute("""SELECT id FROM notes WHERE from_id=%s AND to_id=%s AND added_at=%s""", fromId, toId, now) - s = 'note %s sent to %s' % (cursor.fetchone()[0], name) + s = 'note #%s sent to %s' % (cursor.fetchone()[0], name) sent.append(s) db.commit() irc.reply(utils.commaAndify(sent).capitalize() + '.')