aboutsummaryrefslogtreecommitdiff
path: root/modules/in.py
diff options
context:
space:
mode:
authorGravatar jesopo2016-03-29 14:37:35 +0100
committerGravatar jesopo2016-03-29 14:37:35 +0100
commit7de9970cd0d1f778e86a1b9fbb28e43085d01433 (patch)
tree4a829a5213526e5cf4c074bc2515fd30ef6a1c3b /modules/in.py
parentadded random.py, added code to commands.py to remove all empty strings from a... (diff)
added help strings where they were missing.
Diffstat (limited to 'modules/in.py')
-rw-r--r--modules/in.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/in.py b/modules/in.py
index 7c543124..97ec1cc6 100644
--- a/modules/in.py
+++ b/modules/in.py
@@ -8,7 +8,8 @@ class Module(object):
def __init__(self, bot):
self.bot = bot
bot.events.on("received").on("command").on("in").hook(
- self.in_command, min_args=2)
+ self.in_command, min_args=2,
+ help="Set a reminder")
bot.events.on("received").on("numeric").on("001").hook(
self.on_connect)