From 2b68eb908f439796915b6938006c3cab39bf569d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 29 Oct 2003 16:15:33 +0000 Subject: [PATCH] Make seen not error if it doesn't recognize the user. --- plugins/ChannelDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ChannelDB.py b/plugins/ChannelDB.py index 1c9d5a7ef..e427232b2 100644 --- a/plugins/ChannelDB.py +++ b/plugins/ChannelDB.py @@ -338,7 +338,7 @@ class ChannelDB(plugins.ChannelDBHandler, callbacks.PrivmsgCommandAndRegexp): #debug.printf(sql) cursor.execute(sql, name) if cursor.rowcount == 0: - irc.error(msg, 'I have not seen %s.' % name) + irc.reply(msg, 'I have not seen %s.' % name) else: (seen, m) = cursor.fetchone() seen = int(seen)