From 7950141d941599cab559d26bbaa2f19a1d71f79d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 10 Dec 2004 07:44:24 +0000 Subject: [PATCH] Didn't update when I changed this configuration variable name. --- src/callbacks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index ee9ea9c66..03ef6eda0 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -1284,7 +1284,7 @@ class PrivmsgRegexp(Privmsg): # dirty work for us anymore. self.log.exception('Uncaught exception in %s.%s:', self.name(), name) - if conf.supybot.reply.detailedErrors(): + if conf.supybot.reply.error.detailed(): irc.error(utils.exnToString(e)) else: irc.replyError() @@ -1348,7 +1348,7 @@ class PrivmsgCommandAndRegexp(Privmsg): catchErrors = kwargs.pop('catchErrors', False) if catchErrors: self.log.exception('Uncaught exception in callCommand:') - if conf.supybot.reply.detailedErrors(): + if conf.supybot.reply.error.detailed(): irc.error(utils.exnToString(e)) else: irc.replyError()