12 lines
209 B
Python
12 lines
209 B
Python
|
|
|
|
from sopel import plugin
|
|
|
|
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()
|