X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/586997a7668236c42527b70e4da93edcf4fa4af4..72137af75f3fd19186509be77f9c7368112676ae:/modules/foo.py diff --git a/modules/foo.py b/modules/foo.py index 276b9a3..8063afb 100644 --- a/modules/foo.py +++ b/modules/foo.py @@ -1,10 +1,10 @@ -# Erebus IRC bot - Author: John Runyon +# Erebus IRC bot - Author: Erebus Team # simple module example # This file is released into the public domain; see http://unlicense.org/ # module info modinfo = { - 'author': 'John Runyon (DimeCadmium)', + 'author': 'Erebus Team', 'license': 'public domain', 'compatible': [1], # compatible module API versions 'depends': [], # other modules required to work properly? @@ -22,4 +22,4 @@ def cmd_gtest(bot, user, chan, realtarget, *args): if chan is not None: replyto = chan else: replyto = user - bot.msg(chan, "You said: %s" % (' '.join([str(arg) for arg in args]))) + bot.msg(replyto, "You said: %s" % (' '.join([str(arg) for arg in args])))