From b1bc6a6dbf1387218282d7790f0563832a47aa38 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 24 Feb 2022 07:11:36 -0500 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index b83194e..4593051 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -29,6 +29,8 @@ def prerun(rulematch=False): trigger_command = sb.commands.get_command_from_trigger(trigger) if trigger_command != commands[0]["trigger_command"]: sb.commands.dispatch(commands[0]) + print(commands[0]["trigger_command"]) + print(trigger_command) return # Get list of trigger command(s) by | split @@ -37,6 +39,8 @@ def prerun(rulematch=False): # Validate | split trigger_command = sb.commands.get_command_from_trigger(trigger) if trigger_command != commands[0]["trigger_command"]: + print(commands[0]["trigger_command"]) + print(trigger_command) trigger_dict = rebuild_pipes(commands) sb.commands.dispatch(trigger_dict) return