3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

commands: s/public channel/channel/

This commit is contained in:
James Lu 2015-10-18 12:49:13 -07:00
parent 5327de9317
commit 1b8f1ff95e

View File

@ -31,7 +31,7 @@ def identify(irc, source, args):
Logs in to PyLink using the configured administrator account.""" Logs in to PyLink using the configured administrator account."""
if utils.isChannel(irc.called_by): if utils.isChannel(irc.called_by):
irc.msg(irc.called_by, 'Error: This command must be sent in private. ' irc.msg(irc.called_by, 'Error: This command must be sent in private. '
'(Would you really type a password inside a public channel?)') '(Would you really type a password inside a channel?)')
return return
try: try:
username, password = args[0], args[1] username, password = args[0], args[1]