Removed auth/unauth aliases for identify/unidentify

This commit is contained in:
Jeremy Fincher 2003-03-25 23:05:51 +00:00
parent 657526b985
commit eabd3c8cf5
1 changed files with 2 additions and 6 deletions

View File

@ -1002,7 +1002,7 @@ class UserCommands(callbacks.Privmsg):
return
irc.reply(msg, '[%s]' % ', '.join(user.capabilities))
def auth(self, irc, msg, args):
def identify(self, irc, msg, args):
"""<name> <password>
Identifies the user as <name>.
@ -1023,9 +1023,7 @@ class UserCommands(callbacks.Privmsg):
irc.error(msg, conf.replyIncorrectAuth)
return
identify = auth
def unauth(self, irc, msg, args):
def unidentify(self, irc, msg, args):
"""<name> <password>
Un-identifies the user as <name>.
@ -1044,8 +1042,6 @@ class UserCommands(callbacks.Privmsg):
else:
irc.error(msg, conf.replyIncorrectAuth)
unidentify = unauth
def whoami(self, irc, msg, args):
"""takes no arguments.