Switch whoami to use conf.replyNotRegistered

This commit is contained in:
James Vega 2003-09-12 17:08:09 +00:00
parent f524ec0ac9
commit fac234359a

View File

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