masks should be a list, otherwise we iterate a string
This commit is contained in:
parent
fef1c47626
commit
725c1d3bfa
1 changed files with 1 additions and 1 deletions
|
@ -422,7 +422,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
users = args = []
|
users = args = []
|
||||||
if event["spec"][1][0] == "user":
|
if event["spec"][1][0] == "user":
|
||||||
masks = self._get_hostmask(event["spec"][0], event["spec"][1][1])
|
masks = [self._get_hostmask(event["spec"][0], event["spec"][1][1])]
|
||||||
elif event["spec"][1][0] == "word":
|
elif event["spec"][1][0] == "word":
|
||||||
masks = self._list_query_event(event["spec"][0],
|
masks = self._list_query_event(event["spec"][0],
|
||||||
event["spec"][1][1], mode, prefix)
|
event["spec"][1][1], mode, prefix)
|
||||||
|
|
Loading…
Reference in a new issue