From 3e288569440df9ee387f72c1310183d9356bc9ad Mon Sep 17 00:00:00 2001 From: James Lu Date: Thu, 7 Jul 2016 00:41:31 -0700 Subject: [PATCH] exttargets: fix typo in comment --- coremods/exttargets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coremods/exttargets.py b/coremods/exttargets.py index ad79d88..f6d0390 100644 --- a/coremods/exttargets.py +++ b/coremods/exttargets.py @@ -55,5 +55,5 @@ def account(irc, host, uid): else: # 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 - # 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])