revert irccore

This commit is contained in:
Mike Edmister 2019-04-25 10:32:14 -04:00
parent 2533c5872a
commit ca3b4f903f
1 changed files with 2 additions and 2 deletions

View File

@ -346,14 +346,14 @@ class IRCCore(object):
:type channel: str"""
self.sendRaw("JOIN %s" % channel, priority=3)
def act_PRIVMSG(self, towho, message, priority=None):
def act_PRIVMSG(self, towho, message):
"""Use the `/msg` command
:param towho: the target #channel or user's name
:type towho: str
:param message: the message to send
:type message: str"""
self.sendRaw("PRIVMSG %s :%s" % (towho, message), priority=priority)
self.sendRaw("PRIVMSG %s :%s" % (towho, message))
def act_MODE(self, channel, mode, extra=None):
"""Use the `/mode` command