aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-08-28 15:15:04 +0100
committerGravatar jesopo2018-08-28 15:15:04 +0100
commit9a78dabcc2670b539b4fa075b98c3306f13fdbd1 (patch)
tree5d1948cb183241f154c608437bb3f19f3efb505a /modules
parentImprove IRCServer.Server's __repr__ (diff)
signature
80 cols!
Diffstat (limited to 'modules')
-rw-r--r--modules/sed.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/sed.py b/modules/sed.py
index 38441132..5c2d7ea4 100644
--- a/modules/sed.py
+++ b/modules/sed.py
@@ -16,9 +16,8 @@ class Module(object):
validate=Utils.bool_or_none)
bot.events.on("postboot").on("configure").on(
"channelset").assure_call(setting="sed-sender-only",
- replayable=True, help=
- "Disable/Enable sed only looking at the messages sent by the user",
- validate=Utils.bool_or_none)
+ help="Disable/Enable sed only looking at the messages "
+ "sent by the user", validate=Utils.bool_or_none)
def channel_message(self, event):
sed_split = re.split(REGEX_SPLIT, event["message"], 3)