]> jfr.im git - erebus.git/blame - modules/foo.py
change try-except around msg[0] to if len(msg)==0
[erebus.git] / modules / foo.py
CommitLineData
931c88a4 1# Erebus IRC bot - Author: John Runyon
2# simple module example
3# This file is released into the public domain; see http://unlicense.org/
4
e4255e70 5# module info
6modinfo = {
7 'author': 'John Runyon (DimeCadmium)',
8 'license': 'public domain',
9 'compatible': [1], # compatible module API versions
10 'depends': [], # other modules required to work properly?
11}
12
6c70d82c 13# preamble
14import modlib
15lib = modlib.modlib(__name__)
16modstart = lib.modstart
db50981b 17modstop = lib.modstop
6c70d82c 18
e4255e70 19# module code
d431e543 20import ctlmod
21
6c70d82c 22@lib.hook('test')
e39991e5 23def cmd_test(bot, user, chan, realtarget, *args):
6c70d82c 24 bot.msg(chan, "You said: !test %s" % (' '.join([str(arg) for arg in args])))