mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +01:00
Didn't update when I changed this configuration variable name.
This commit is contained in:
parent
962e259b32
commit
7950141d94
@ -1284,7 +1284,7 @@ class PrivmsgRegexp(Privmsg):
|
|||||||
# dirty work for us anymore.
|
# dirty work for us anymore.
|
||||||
self.log.exception('Uncaught exception in %s.%s:',
|
self.log.exception('Uncaught exception in %s.%s:',
|
||||||
self.name(), name)
|
self.name(), name)
|
||||||
if conf.supybot.reply.detailedErrors():
|
if conf.supybot.reply.error.detailed():
|
||||||
irc.error(utils.exnToString(e))
|
irc.error(utils.exnToString(e))
|
||||||
else:
|
else:
|
||||||
irc.replyError()
|
irc.replyError()
|
||||||
@ -1348,7 +1348,7 @@ class PrivmsgCommandAndRegexp(Privmsg):
|
|||||||
catchErrors = kwargs.pop('catchErrors', False)
|
catchErrors = kwargs.pop('catchErrors', False)
|
||||||
if catchErrors:
|
if catchErrors:
|
||||||
self.log.exception('Uncaught exception in callCommand:')
|
self.log.exception('Uncaught exception in callCommand:')
|
||||||
if conf.supybot.reply.detailedErrors():
|
if conf.supybot.reply.error.detailed():
|
||||||
irc.error(utils.exnToString(e))
|
irc.error(utils.exnToString(e))
|
||||||
else:
|
else:
|
||||||
irc.replyError()
|
irc.replyError()
|
||||||
|
Loading…
Reference in New Issue
Block a user