diff options
Diffstat (limited to 'modules/google.py')
| -rw-r--r-- | modules/google.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/google.py b/modules/google.py index d391de7f..237a1c58 100644 --- a/modules/google.py +++ b/modules/google.py @@ -9,7 +9,8 @@ class Module(object): def __init__(self, bot): self.bot = bot bot.events.on("received").on("command").on("google", - "g").hook(self.google, help="Google feeling lucky") + "g").hook(self.google, help="Google feeling lucky", + usage="[search term]") def google(self, event): phrase = event["args"] or event["log"].get() |
