From 5d25b3c1054c31266cff251d7de3087e74080a48 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 25 Feb 2018 14:29:19 -0500 Subject: [PATCH] ctcp: remove extraneous keyword argument private is not defined in irc.msg() --- plugins/ctcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ctcp.py b/plugins/ctcp.py index 344c9d6..bd5c305 100644 --- a/plugins/ctcp.py +++ b/plugins/ctcp.py @@ -40,7 +40,7 @@ def handle_ctcp(irc, source, command, args): # Note, do NOT use irc.reply() in hook handlers because nothing except the # command handler system actually updates the last caller. irc.msg(source, '\x01%s %s\x01' % (ctcp_command, result), - notice=True, private=True, source=target) + notice=True, source=target) return False # Block this message from reaching the general command handler else: