From bb61957811a4913cd1c7f9ab4822ba03c6dffcfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Peter=20S=C3=B8ndergaard?= Date: Sat, 23 May 2015 20:51:58 +0200 Subject: [PATCH] pass contents along. --- pydle/features/ctcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydle/features/ctcp.py b/pydle/features/ctcp.py index 0412f42..95ee08a 100644 --- a/pydle/features/ctcp.py +++ b/pydle/features/ctcp.py @@ -46,7 +46,7 @@ class CTCPSupport(rfc1459.RFC1459Support): if self.is_channel(target) and not self.in_channel(target): raise client.NotInChannel(target) - self.message(target, construct_ctcp(query)) + self.message(target, construct_ctcp(query, contents)) def ctcp_reply(self, target, query, response): """ Send a CTCP reply to a target. """