mirror of
https://github.com/jlu5/PyLink.git
synced 2025-01-26 04:04:22 +01:00
automode: fix help syntax
This commit is contained in:
parent
d7538bee1b
commit
40197e5f57
@ -243,7 +243,8 @@ def match(irc, channel, uids=None):
|
|||||||
{'target': channel, 'modes': outgoing_modes, 'parse_as': 'MODE'}])
|
{'target': channel, 'modes': outgoing_modes, 'parse_as': 'MODE'}])
|
||||||
|
|
||||||
def syncacc(irc, source, args):
|
def syncacc(irc, source, args):
|
||||||
"""
|
"""<channel>
|
||||||
|
|
||||||
Syncs Automode access lists to the channel.
|
Syncs Automode access lists to the channel.
|
||||||
"""
|
"""
|
||||||
irc.checkAuthenticated(source, allowOper=False)
|
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):
|
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:
|
for channel in irc.users[source].channels:
|
||||||
# Look at all the users' channels for any possible changes.
|
# Look at all the users' channels for any possible changes.
|
||||||
match(irc, channel, [source])
|
match(irc, channel, [source])
|
||||||
|
Loading…
Reference in New Issue
Block a user