"," -> ", " in modules/words.py

This commit is contained in:
jesopo 2018-10-18 12:54:37 +01:00
parent 226d835374
commit bd52297885

View file

@ -80,7 +80,7 @@ class Module(ModuleManager.BaseModule):
"""
:help: List which words are being tracked on the current network
"""
event["stdout"].write("Tracked words: %s" % ",".join(
event["stdout"].write("Tracked words: %s" % ", ".join(
event["server"].get_setting("tracked-words", [])))
@utils.hook("received.command.wordusers", min_args=1)