aboutsummaryrefslogtreecommitdiff
path: root/modules/trakt.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/trakt.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/trakt.py')
-rw-r--r--modules/trakt.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/trakt.py b/modules/trakt.py
index 8e23cfca..bec38768 100644
--- a/modules/trakt.py
+++ b/modules/trakt.py
@@ -8,7 +8,9 @@ class Module(object):
self.bot = bot
bot.events.on("boot").on("done").hook(self.boot_done)
bot.events.on("received").on("command").on("nowwatching",
- "nw").hook(self.now_watching)
+ "nw").hook(self.now_watching,
+ help="Get what you or another user is now watching "
+ "on trakt.tv")
def boot_done(self, event):
self.bot.events.on("postboot").on("configure").on("set"