13 lines
237 B
Python
13 lines
237 B
Python
|
|
|
|
from sopel import plugin
|
|
|
|
from sopel_SpiceBot_Core_Prerun import prerun
|
|
|
|
|
|
@prerun()
|
|
@plugin.nickname_command('upper')
|
|
@plugin.command('upper')
|
|
def upper(bot, trigger, comrun):
|
|
comrun.say(str(comrun.command["trigger_str"]).upper())
|