diff options
| author | 2019-09-19 18:16:10 +0100 | |
|---|---|---|
| committer | 2019-09-19 18:16:10 +0100 | |
| commit | efc0e197e5565a0d68b2fbe778abac5690deb5c1 (patch) | |
| tree | cf19ed5abbadd8dae030e136bb9cc07cce5e9ffe /modules/line_handler | |
| parent | add missing IRCLine import (diff) | |
| signature | ||
Allow passing source Hostmask to IRCBatch
Diffstat (limited to 'modules/line_handler')
| -rw-r--r-- | modules/line_handler/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py index 0df30109..714bc23b 100644 --- a/modules/line_handler/__init__.py +++ b/modules/line_handler/__init__.py @@ -179,7 +179,7 @@ class Module(ModuleManager.BaseModule): args = event["line"].args[2:] batch = utils.irc.IRCBatch(identifier, batch_type, args, - event["line"].tags) + event["line"].tags, source=event["line"].source) event["server"].batches[identifier] = batch self.events.on("received.batch.start").call(batch=batch, |
