3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-30 14:49:28 +01:00

corecommands: alias 'identify' to 'login' and 'id'

This commit is contained in:
James Lu 2017-08-07 16:15:54 -07:00
parent 187ca11946
commit 21a39de0b4

View File

@ -25,7 +25,6 @@ def _loginfail(irc, source, username):
irc.error('Incorrect credentials.')
log.warning("(%s) Failed login to %r from %s", irc.name, username, irc.get_hostmask(source))
@utils.add_cmd
def identify(irc, source, args):
"""<username> <password>
@ -52,7 +51,7 @@ def identify(irc, source, args):
else:
# Username not found.
_loginfail(irc, source, username)
utils.add_cmd(identify, aliases=('login', 'id'))
@utils.add_cmd
def shutdown(irc, source, args):