aboutsummaryrefslogtreecommitdiff
path: root/modules/sed.py
diff options
context:
space:
mode:
authorGravatar jesopo2017-12-26 10:32:36 +0000
committerGravatar jesopo2017-12-26 10:32:36 +0000
commit0cc72d5d66bc3a6abf7757c7202905bd656ddf1d (patch)
treea2591a46c4e25f359b7ed6990f31d91be22d4d1d /modules/sed.py
parentNR: Indicate interesting activity at locations (diff)
signature
Added a "replay" system to EventManager hooks, to replay missed .calls
Diffstat (limited to 'modules/sed.py')
-rw-r--r--modules/sed.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/sed.py b/modules/sed.py
index 77c6f9a2..32934db5 100644
--- a/modules/sed.py
+++ b/modules/sed.py
@@ -7,16 +7,14 @@ REGEX_SED = re.compile("^s/")
class Module(object):
def __init__(self, bot):
self.bot = bot
- bot.events.on("boot").on("done").hook(self.boot_done)
bot.events.on("received").on("message").on("channel").hook(
self.channel_message)
- def boot_done(self, event):
- self.bot.events.on("postboot").on("configure").on(
+ bot.events.on("postboot").on("configure").on(
"channelset").call(setting="sed",
help="Disable/Enable sed in a channel",
validate=Utils.bool_or_none)
- self.bot.events.on("postboot").on("configure").on(
+ bot.events.on("postboot").on("configure").on(
"channelset").call(setting="sed-sender-only",
help=
"Disable/Enable sed only looking at the messages sent by the user",