Add missing ")" in modules/badwords.py

This commit is contained in:
jesopo 2018-10-28 12:30:53 +00:00
parent c577f9d1ad
commit d3563eea69

View file

@ -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):