diff options
| author | 2018-08-28 15:15:04 +0100 | |
|---|---|---|
| committer | 2018-08-28 15:15:04 +0100 | |
| commit | 9a78dabcc2670b539b4fa075b98c3306f13fdbd1 (patch) | |
| tree | 5d1948cb183241f154c608437bb3f19f3efb505a /modules/sed.py | |
| parent | Improve IRCServer.Server's __repr__ (diff) | |
| signature | ||
80 cols!
Diffstat (limited to 'modules/sed.py')
| -rw-r--r-- | modules/sed.py | 5 |
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) |
