From 3c123c1fcd008df1784e6008a9633514c3434c9f Mon Sep 17 00:00:00 2001 From: Martin/Geno Date: Thu, 23 Aug 2018 13:22:00 +0200 Subject: [PATCH] ircbot: add help as another command --- sopel-bot/modules/spaceapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel-bot/modules/spaceapi.py b/sopel-bot/modules/spaceapi.py index ed361f2..b959f0e 100644 --- a/sopel-bot/modules/spaceapi.py +++ b/sopel-bot/modules/spaceapi.py @@ -53,6 +53,6 @@ def check_status(bot, human=False): def interval_check_status(bot): check_status(bot) -@sopel.module.commands('status') +@sopel.module.commands('status','help') def cmd_check_status(bot, trigger): check_status(bot, True)