From e08a393960143ea0035a753a337693a954752ae3 Mon Sep 17 00:00:00 2001 From: Ken Spencer Date: Sun, 29 Oct 2017 11:55:10 -0400 Subject: [PATCH] src/ircmsgs: modes doesn't just quiet ('Returns a MODE to /quiet/ each of nicks on channel') (#1313) * src/ircmsgs: modes doesn't just quiet ('Returns a MODE to /quiet/ each of nicks on channel') * plus also fix some possible english issues * src/ircmsgs: fix up docs per @GLolol * src/ircmsgs: fix up wording per @ProgVal s/pairs/2-tuples/ --- src/ircmsgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ircmsgs.py b/src/ircmsgs.py index 13b80863a..760e7d7e5 100644 --- a/src/ircmsgs.py +++ b/src/ircmsgs.py @@ -840,7 +840,7 @@ def mode(channel, args=(), prefix='', msg=None): return IrcMsg(prefix=prefix, command='MODE', args=(channel,)+args, msg=msg) def modes(channel, args=(), prefix='', msg=None): - """Returns a MODE to quiet each of nicks on channel.""" + """Returns a MODE message for the channel for all the (mode, targetOrNone) 2-tuples in 'args'.""" if conf.supybot.protocols.irc.strictRfc(): assert isChannel(channel), repr(channel) modes = args