From ca3b4f903fd5ea3edd679f71970cffeef686c084 Mon Sep 17 00:00:00 2001 From: Mike Edmister Date: Thu, 25 Apr 2019 10:32:14 -0400 Subject: [PATCH] revert irccore --- pyircbot/irccore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyircbot/irccore.py b/pyircbot/irccore.py index 7d80165..3c8797d 100644 --- a/pyircbot/irccore.py +++ b/pyircbot/irccore.py @@ -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