aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-03 11:32:20 +0100
committerGravatar jesopo2018-10-03 11:32:20 +0100
commit489d508997e9470ead824ff4492f57dfa062a72d (patch)
treee801420367e1ff3ef92289854c7c6abd55c6487f
parentMove parsing IRC lines to src/Utils.py, added base support for parsing outgoing (diff)
signature
Fix BATCH parsing
-rw-r--r--modules/line_handler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler.py b/modules/line_handler.py
index 7fd363cc..0281d673 100644
--- a/modules/line_handler.py
+++ b/modules/line_handler.py
@@ -464,7 +464,7 @@ class Module(ModuleManager.BaseModule):
lines = event["server"].batches[identifier]
del event["server"].batches[identifier]
for line in lines:
- self.handle(event["server"], line)
+ self._handle(line)
# IRCv3 CHGHOST, a user's username and/or hostname has changed
@Utils.hook("raw.chghost")