aboutsummaryrefslogtreecommitdiff
path: root/modules/stats.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-28 18:36:43 +0100
committerGravatar jesopo2019-06-28 18:36:43 +0100
commit890c893ddf723cc0f68558b65daa43c230e863d3 (patch)
treebaf1ae8e3600158b7143af1774015af03f79e30f /modules/stats.py
parentDEBUG log when trying to git.io-shorten a github url (diff)
signature
Add ircv3.py - for IRCv3-related stats
Diffstat (limited to 'modules/stats.py')
-rw-r--r--modules/stats.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/stats.py b/modules/stats.py
index 4481a724..7828e0cc 100644
--- a/modules/stats.py
+++ b/modules/stats.py
@@ -123,11 +123,3 @@ class Module(ModuleManager.BaseModule):
@utils.hook("api.get.modules")
def modules_api(self, event):
return list(self.bot.modules.modules.keys())
-
- @utils.hook("received.command.caps")
- def capabilities(self, event):
- """
- :help: List negotiated IRCv3 capabilities
- """
- event["stdout"].write("IRCv3 capabilities: %s" %
- ", ".join(event["server"].agreed_capabilities))