diff options
| author | 2018-10-28 12:41:01 +0000 | |
|---|---|---|
| committer | 2018-10-28 12:41:01 +0000 | |
| commit | 73a33633e20982143045d69cb876b6e2c813a606 (patch) | |
| tree | 3d26a586dfd0bc4815d82dac36a8b035b3116abc /modules/badwords.py | |
| parent | Correctly use enumerate() in modules/badwords.py.badwords_list (diff) | |
| signature | ||
Fix wording for !badwordsdel (copypaste fail!)
Diffstat (limited to 'modules/badwords.py')
| -rw-r--r-- | modules/badwords.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/badwords.py b/modules/badwords.py index 19e542cb..daf7fbc8 100644 --- a/modules/badwords.py +++ b/modules/badwords.py @@ -53,7 +53,8 @@ class Module(ModuleManager.BaseModule): event["user"].nickname, index)) badwords.pop(index_int) event["target"].set_setting("badwords", badwords) - event["stdout"].write("%s: added to badwords" % event["user"].nickname) + event["stdout"].write("%s: removed from badwords" % + event["user"].nickname) @utils.hook("received.message.channel") def channel_message(self, event): |
