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']
|
||||
if ircdb.checkCapability(msg.prefix, 'owner'):
|
||||
v = self._getConfig(conf.supybot.replies.errorOwner)
|
||||
s = self.__makeReply(v, s)
|
||||
return self.reply(s, **kwargs)
|
||||
if v:
|
||||
s = self.__makeReply(v, s)
|
||||
return self.reply(s, **kwargs)
|
||||
else:
|
||||
self.noReply()
|
||||
|
||||
def _getTarget(self, to=None):
|
||||
"""Compute the target according to self.to, the provided to,
|
||||
|
@ -676,8 +676,9 @@ registerChannelValue(supybot.replies, 'success',
|
||||
|
||||
registerChannelValue(supybot.replies, 'error',
|
||||
registry.NormalizedString(_("""An error has occurred and has been logged.
|
||||
Please contact this bot's administrator for more information."""), _("""
|
||||
Determines what error message the bot gives when it wants to be
|
||||
Please contact this bot's administrator for more information.
|
||||
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.""")))
|
||||
|
||||
registerChannelValue(supybot.replies, 'errorOwner',
|
||||
|
Loading…
Reference in New Issue
Block a user