aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-22 08:42:41 +0100
committerGravatar jesopo2019-05-22 08:42:41 +0100
commit29d5ab9b56c0eab2df52f450f2f2c6cbcfaa6b70 (patch)
treeed9b6a05fae058f7a6bbb563c3ee4933a758459d /modules/line_handler
parentthere's no `1` index arg for a batch-end (diff)
signature
`_handle` takes a server param
Diffstat (limited to 'modules/line_handler')
-rw-r--r--modules/line_handler/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py
index 42eba637..ad0b01e3 100644
--- a/modules/line_handler/__init__.py
+++ b/modules/line_handler/__init__.py
@@ -201,7 +201,7 @@ class Module(ModuleManager.BaseModule):
for line in batch.lines:
if add_tags:
line.tags.update(add_tags)
- self._handle(line)
+ self._handle(event["server"], line)
# IRCv3 CHGHOST, a user's username and/or hostname has changed
@utils.hook("raw.received.chghost")