X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/d6c6516c3f92d1d03bc119d0dce3cf11903bbbd3..f3c43addd905c2fcfdef3d8139b17137e1ab36da:/modules/msg.py diff --git a/modules/msg.py b/modules/msg.py index 08299ae..0ed02ee 100644 --- a/modules/msg.py +++ b/modules/msg.py @@ -28,14 +28,11 @@ def _getbot(bot, user, chan, realtarget, *args): target = None if args[0].startswith("#"): target = bot.parent.channel(args[0]) - print "target = %s" % (target) if target is not None: sendbot = target.bot - print "bot = %s" % (sendbot) else: target = args[0] sendbot = bot.parent.randbot() - print "bot = random" return (target, sendbot) @lib.hook(glevel=lib.STAFF, needchan=False)