diff options
| author | 2018-10-03 11:32:20 +0100 | |
|---|---|---|
| committer | 2018-10-03 11:32:20 +0100 | |
| commit | 489d508997e9470ead824ff4492f57dfa062a72d (patch) | |
| tree | e801420367e1ff3ef92289854c7c6abd55c6487f | |
| parent | Move parsing IRC lines to src/Utils.py, added base support for parsing outgoing (diff) | |
| signature | ||
Fix BATCH parsing
| -rw-r--r-- | modules/line_handler.py | 2 |
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") |
