Didn't update when I changed this configuration variable name.

This commit is contained in:
Jeremy Fincher 2004-12-10 07:44:24 +00:00
parent 962e259b32
commit 7950141d94
1 changed files with 2 additions and 2 deletions

View File

@ -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()