aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler/__init__.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-20 16:52:23 +0100
committerGravatar jesopo2019-06-20 16:52:23 +0100
commit24cdff9e44c8afdbb6a1289b8da451ec1d0ba9af (patch)
tree0a147e612ffe1b5e5c3cc1ebe982f3f853898292 /modules/line_handler/__init__.py
parentreturn unshortened url when shortening fails (diff)
signature
Add an export for IRCv3 CAPs
Diffstat (limited to 'modules/line_handler/__init__.py')
-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 15a921c2..0470e36a 100644
--- a/modules/line_handler/__init__.py
+++ b/modules/line_handler/__init__.py
@@ -133,7 +133,7 @@ class Module(ModuleManager.BaseModule):
# the server is telling us about its capabilities!
@utils.hook("raw.received.cap")
def cap(self, event):
- ircv3.cap(self.events, event)
+ ircv3.cap(self.exports, self.events, event)
# the server is asking for authentication
@utils.hook("raw.received.authenticate")