From 8ae5cc68cd9a921031ae80022d8229a95ae2d297 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 5 May 2022 13:12:03 -0400 Subject: [PATCH] test --- sopel_SpiceBot_Core_Prerun/__init__.py | 1 - sopel_SpiceBot_Runtime_Commands/__init__.py | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sopel_SpiceBot_Core_Prerun/__init__.py b/sopel_SpiceBot_Core_Prerun/__init__.py index 51de006..5defebd 100644 --- a/sopel_SpiceBot_Core_Prerun/__init__.py +++ b/sopel_SpiceBot_Core_Prerun/__init__.py @@ -153,7 +153,6 @@ class ComRun(): @property def is_pipe_command(self): - print(self.trigger.args[1]) if sb.commands.pipe_split_key in self.trigger.args[1]: return True return False diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 64e43f0..4e80273 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -9,6 +9,7 @@ from sopel_SpiceBot_Core_Prerun import prerun @plugin.command('testoa') def commands_output_a(bot, trigger, comrun): comrun.say("this is test a") + bot.say("test a") @prerun() @@ -16,6 +17,7 @@ def commands_output_a(bot, trigger, comrun): def commands_output_b(bot, trigger, comrun): comrun.say("this is test b") comrun.say(str(comrun.trigger).upper()) + bot.say("test b") @prerun()