fixed CTCP

This commit is contained in:
Luke Rogers 2013-10-02 00:09:57 +13:00
parent cfe9ebd054
commit b6c3a233eb
1 changed files with 2 additions and 2 deletions

View File

@ -210,8 +210,8 @@ class IRC(object):
def ctcp(self, target, ctcp_type, text):
""" makes the bot send a PRIVMSG CTCP to a target """
text = u"\x01{} {}\x01".format(ctcp_type, target)
self.cmd("PRIVMSG", [target, text])
out = u"\x01{} {}\x01".format(ctcp_type, text)
self.cmd("PRIVMSG", [target, out])
def cmd(self, command, params=None):