Changed 'no notes' message to be more natural English.

This commit is contained in:
Jeremy Fincher 2003-08-26 18:14:32 +00:00
parent 8f33ff28bd
commit 6d8a9e9c23
1 changed files with 1 additions and 1 deletions

View File

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