From c546b0bee244479d328d900dd3408e2cbde41d94 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 12 Feb 2022 15:07:36 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py index 218be9a..cc48d22 100644 --- a/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Nickname_Commands/__init__.py @@ -19,7 +19,10 @@ def sopel_commands(bot, trigger): bot.say("testing commands") - bot.say(str(bot.rules._rules.values())) + for x in sb.commands.sopel_commands: + bot.say(str(x)) + for y in x: + bot.say(str(y)) @prerun() @@ -40,5 +43,6 @@ def sopel_action_commands(bot, trigger): bot.say("testing action_commands") for x in sb.commands.sopel_action_commands: + bot.say(str(x)) for y in x: bot.say(str(y))