From eabd3c8cf5effc5bd4907153a44cbacdc0a7634f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 25 Mar 2003 23:05:51 +0000 Subject: [PATCH] Removed auth/unauth aliases for identify/unidentify --- src/privmsgs.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/privmsgs.py b/src/privmsgs.py index 45f220e15..68f62243f 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -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): """ Identifies the user as . @@ -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): """ Un-identifies the user as . @@ -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.