Missed an indentation level.

This commit is contained in:
Jeremy Fincher 2004-12-07 08:17:27 +00:00
parent 9e2c014118
commit 15c5a7fe71

View File

@ -104,11 +104,11 @@ class AutoMode(callbacks.Privmsg):
msgmaker = getattr(ircmsgs, type) msgmaker = getattr(ircmsgs, type)
irc.queueMsg(msgmaker(channel, msg.nick)) irc.queueMsg(msgmaker(channel, msg.nick))
raise Continue # Even if fallthrough, let's only do one. raise Continue # Even if fallthrough, let's only do one.
elif not fallthrough: elif not fallthrough:
self.log.info('%s has %s, but supybot.plugins.AutoMode.%s is ' self.log.info('%s has %s, but supybot.plugins.AutoMode.%s '
'not enabled in %s, refusing to fall through.', 'is not enabled in %s, refusing to fall '
msg.prefix, cap, type, channel) 'through.', msg.prefix, cap, type, channel)
raise Continue raise Continue
try: try:
do('op') do('op')
if 'h' in irc.state.supported['prefix']: if 'h' in irc.state.supported['prefix']: