From 15c5a7fe71c5f9fc6da35e3fa31d1567e5fdbcd0 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 7 Dec 2004 08:17:27 +0000 Subject: [PATCH] Missed an indentation level. --- plugins/AutoMode.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/AutoMode.py b/plugins/AutoMode.py index a4eeb13ef..99657302e 100644 --- a/plugins/AutoMode.py +++ b/plugins/AutoMode.py @@ -104,11 +104,11 @@ class AutoMode(callbacks.Privmsg): msgmaker = getattr(ircmsgs, type) irc.queueMsg(msgmaker(channel, msg.nick)) raise Continue # Even if fallthrough, let's only do one. - elif not fallthrough: - self.log.info('%s has %s, but supybot.plugins.AutoMode.%s is ' - 'not enabled in %s, refusing to fall through.', - msg.prefix, cap, type, channel) - raise Continue + elif not fallthrough: + self.log.info('%s has %s, but supybot.plugins.AutoMode.%s ' + 'is not enabled in %s, refusing to fall ' + 'through.', msg.prefix, cap, type, channel) + raise Continue try: do('op') if 'h' in irc.state.supported['prefix']: