From bc476df4858beae6925282c8203b6d70b426dc72 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 30 Mar 2019 16:36:04 -0400 Subject: [PATCH] missed the letter "s" --- sopel/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sopel/bot.py b/sopel/bot.py index 7c2ed73ca8..a55be5eb47 100644 --- a/sopel/bot.py +++ b/sopel/bot.py @@ -369,7 +369,7 @@ def action(self, text, dests): if not isinstance(dests, list): dests = [dests] dests = ','.join(str(x) for x in dests) - self.say('\001ACTION {}\001'.format(text), dest) + self.say('\001ACTION {}\001'.format(text), dests) def reply(self, text, dests, reply_to, notice=False): """Prepend ``reply_to`` to ``text``, and send as a PRIVMSG to ``dest``.