From fac234359a534d68f2e3f8dff2d7036e466c2da3 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 12 Sep 2003 17:08:09 +0000 Subject: [PATCH] Switch whoami to use conf.replyNotRegistered --- src/UserCommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UserCommands.py b/src/UserCommands.py index 9fb3b821e..8ad90128a 100755 --- a/src/UserCommands.py +++ b/src/UserCommands.py @@ -254,7 +254,7 @@ class UserCommands(callbacks.Privmsg): name = ircdb.users.getUserName(msg.prefix) irc.reply(msg, name) except KeyError: - irc.error(msg, 'I can\'t find you in my database') + irc.error(msg, conf.replyNotRegistered) Class = UserCommands