diff --git a/sopel_SpiceBot_Runtime_Commands/__init__.py b/sopel_SpiceBot_Runtime_Commands/__init__.py index 9aface4..757ea96 100644 --- a/sopel_SpiceBot_Runtime_Commands/__init__.py +++ b/sopel_SpiceBot_Runtime_Commands/__init__.py @@ -14,7 +14,7 @@ def pipea(bot, trigger, comrun): @prerun() @plugin.command('pipeb') def pipeb(bot, trigger, comrun): - comrun.say = str(trigger.group(1)).upper() + comrun.say = str(trigger.args[1]).upper() @prerun()