diff options
Diffstat (limited to 'modules/thesaurus.py')
| -rw-r--r-- | modules/thesaurus.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/thesaurus.py b/modules/thesaurus.py index b0b54aa3..2580c191 100644 --- a/modules/thesaurus.py +++ b/modules/thesaurus.py @@ -9,7 +9,8 @@ class Module(object): self.bot = bot bot.events.on("received").on("command").on("synonym", "antonym").hook(self.thesaurus, min_args=1, - help="Get synonyms/antonyms for a provided phrase") + help="Get synonyms/antonyms for a provided phrase", + usage="<word> [type]") def thesaurus(self, event): phrase = event["args_split"][0] |
