mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 02:29:22 +01:00
Disable generic error reply when supybot.replies.error is empty
This commit is contained in:
parent
eb002a31e9
commit
054ee6e410
@ -506,8 +506,11 @@ class RichReplyMethods(object):
|
|||||||
msg = kwargs['msg']
|
msg = kwargs['msg']
|
||||||
if ircdb.checkCapability(msg.prefix, 'owner'):
|
if ircdb.checkCapability(msg.prefix, 'owner'):
|
||||||
v = self._getConfig(conf.supybot.replies.errorOwner)
|
v = self._getConfig(conf.supybot.replies.errorOwner)
|
||||||
|
if v:
|
||||||
s = self.__makeReply(v, s)
|
s = self.__makeReply(v, s)
|
||||||
return self.reply(s, **kwargs)
|
return self.reply(s, **kwargs)
|
||||||
|
else:
|
||||||
|
self.noReply()
|
||||||
|
|
||||||
def _getTarget(self, to=None):
|
def _getTarget(self, to=None):
|
||||||
"""Compute the target according to self.to, the provided to,
|
"""Compute the target according to self.to, the provided to,
|
||||||
|
@ -676,8 +676,9 @@ registerChannelValue(supybot.replies, 'success',
|
|||||||
|
|
||||||
registerChannelValue(supybot.replies, 'error',
|
registerChannelValue(supybot.replies, 'error',
|
||||||
registry.NormalizedString(_("""An error has occurred and has been logged.
|
registry.NormalizedString(_("""An error has occurred and has been logged.
|
||||||
Please contact this bot's administrator for more information."""), _("""
|
Please contact this bot's administrator for more information.
|
||||||
Determines what error message the bot gives when it wants to be
|
If this configuration variable is empty, no generic error message will be sent."""),
|
||||||
|
_("""Determines what error message the bot gives when it wants to be
|
||||||
ambiguous.""")))
|
ambiguous.""")))
|
||||||
|
|
||||||
registerChannelValue(supybot.replies, 'errorOwner',
|
registerChannelValue(supybot.replies, 'errorOwner',
|
||||||
|
Loading…
Reference in New Issue
Block a user