From 6d8a9e9c236bcd40e746bace32c905eaed7f1efc Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 26 Aug 2003 18:14:32 +0000 Subject: [PATCH] Changed 'no notes' message to be more natural English. --- plugins/Notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Notes.py b/plugins/Notes.py index 20ac6f58d..698de60eb 100644 --- a/plugins/Notes.py +++ b/plugins/Notes.py @@ -268,7 +268,7 @@ class Notes(callbacks.Privmsg): users.name=%s AND notes.read=1""", sender) if cursor.rowcount == 0: - irc.reply(msg, 'I could find no notes for your user.') + irc.reply(msg, 'I couldn\'t find any notes for your user.') else: ids = [str(t[0]) for t in cursor.fetchall()] ids.reverse()