From b44437bdbd0224402104d5a543d1e9c22fe09874 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 12 Sep 2014 09:52:00 +0300 Subject: [PATCH] Anonymous: fix config help for allowPrivateTarget I am again unsure of my wordings, so if someone could check them, that would be nice. --- plugins/Anonymous/config.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/Anonymous/config.py b/plugins/Anonymous/config.py index d48f4443c..b64d42a30 100644 --- a/plugins/Anonymous/config.py +++ b/plugins/Anonymous/config.py @@ -56,10 +56,9 @@ conf.registerChannelValue(conf.supybot.plugins.Anonymous, 'requireCapability', registry.String('', _("""Determines what capability (if any) the bot should require people trying to use this plugin to have."""))) conf.registerGlobalValue(conf.supybot.plugins.Anonymous, 'allowPrivateTarget', - registry.Boolean(False, _("""Determines whether the bot will require - targets of the "say" command to be public (i.e., channels). If this is - True, the bot will allow people to use the "say" command to send private - messages to other users."""))) + registry.Boolean(False, _("""Determines whether the bot will allow + "tell" command to be used. If this is true, the bot will allow people + "tell" command to send private messages to other users."""))) # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: