3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-25 20:22:45 +01:00

exttargets: fix typo in comment

This commit is contained in:
James Lu 2016-07-07 00:41:31 -07:00 committed by GitHub
parent c034877d04
commit 3e28856944

View File

@ -55,5 +55,5 @@ def account(irc, host, uid):
else: else:
# Third or fourth scenario. If there are more than 3 groups, the rest are ignored. # Third or fourth scenario. If there are more than 3 groups, the rest are ignored.
# In other words: Return True if the user is logged in, the query matches either '*' or the # In other words: Return True if the user is logged in, the query matches either '*' or the
# user's login, abd the user is connected on the network requested. # user's login, and the user is connected on the network requested.
return slogin and (groups[1] in ('*', slogin)) and (homenet == groups[2]) return slogin and (groups[1] in ('*', slogin)) and (homenet == groups[2])