diff options
| author | 2018-10-28 12:30:53 +0000 | |
|---|---|---|
| committer | 2018-10-28 12:30:53 +0000 | |
| commit | d3563eea69d45291ed0e437706a76fcc749c556a (patch) | |
| tree | a749ee30be12103b1505fd1b476ffc81f02f95eb /modules | |
| parent | Add first version of modules/badwords.py (diff) | |
| signature | ||
Add missing ")" in modules/badwords.py
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/badwords.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/badwords.py b/modules/badwords.py index 39654bed..e5e9ee89 100644 --- a/modules/badwords.py +++ b/modules/badwords.py @@ -12,7 +12,7 @@ class Module(ModuleManager.BaseModule): badwords = ("(%d) %s" % (i, badword["pattern"]) for badword in enumerate(badwords)) events["stdout"].write("%s: %s" % (event["target"].name, - ", ".join(badwords)) + ", ".join(badwords))) @utils.hook("received.command.badwordsadd", channel_only=True, min_args=2) def badwords_add(self, event): |
