3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

automode: fix help syntax

This commit is contained in:
James Lu 2016-07-17 10:52:56 -07:00
parent d7538bee1b
commit 40197e5f57

View File

@ -243,7 +243,8 @@ def match(irc, channel, uids=None):
{'target': channel, 'modes': outgoing_modes, 'parse_as': 'MODE'}])
def syncacc(irc, source, args):
"""
"""<channel>
Syncs Automode access lists to the channel.
"""
irc.checkAuthenticated(source, allowOper=False)
@ -299,7 +300,8 @@ utils.add_hook(handle_join, 'PYLINK_SERVICE_JOIN') # And the version for servic
def handle_services_login(irc, source, command, args):
"""
Handles services login change, to trigger Automode matching."""
Handles services login change, to trigger Automode matching.
"""
for channel in irc.users[source].channels:
# Look at all the users' channels for any possible changes.
match(irc, channel, [source])