From 9986f5188f9bc8136fa2422e1989022129b073b7 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 5 May 2022 14:58:54 -0400 Subject: [PATCH] test --- spicebot_command_lower/__init__.py | 2 +- spicebot_command_upper/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spicebot_command_lower/__init__.py b/spicebot_command_lower/__init__.py index de46ce6..8662596 100644 --- a/spicebot_command_lower/__init__.py +++ b/spicebot_command_lower/__init__.py @@ -9,4 +9,4 @@ from sopel_SpiceBot_Core_Prerun import prerun @plugin.nickname_command('lower') @plugin.command('lower') def lower(bot, trigger, comrun): - comrun.say(str(comrun.trigger_dict["trigger_str"]).lower()) + comrun.say(str(comrun.command["trigger_str"]).lower()) diff --git a/spicebot_command_upper/__init__.py b/spicebot_command_upper/__init__.py index c66946a..fa83c84 100644 --- a/spicebot_command_upper/__init__.py +++ b/spicebot_command_upper/__init__.py @@ -8,4 +8,4 @@ from sopel_SpiceBot_Core_Prerun import prerun @prerun() @plugin.command('upper') def upper(bot, trigger, comrun): - comrun.say(str(comrun.trigger_dict["trigger_str"]).upper()) + comrun.say(str(comrun.command["trigger_str"]).upper())