From: zonidjan Date: Wed, 4 Oct 2017 23:27:40 +0000 (-0500) Subject: msg - remove debug prints X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/f3c43addd905c2fcfdef3d8139b17137e1ab36da?hp=d6c6516c3f92d1d03bc119d0dce3cf11903bbbd3 msg - remove debug prints --- 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)