From f329a03350d4e525727d141ada90f4bbe598326d Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Sat, 2 Mar 2019 10:50:43 -0800 Subject: [PATCH] fix spacing error --- pinhook/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pinhook/bot.py b/pinhook/bot.py index c24d67a..61e04e9 100644 --- a/pinhook/bot.py +++ b/pinhook/bot.py @@ -256,9 +256,9 @@ class Bot(irc.bot.SingleServerIRCBot): self.logger.error('output message too long: {}'.format(msg)) elif output.msg_type == pinhook.plugin.OutputType.Action: self.logger.debug('output action: {}'.format(msg)) - try: + try: c.action(chan, msg) - except c.MessageTooLong: + except c.MessageTooLong: self.logger.error('output message too long: {}'.format(msg)) else: self.logger.warning("Unsupported output type '{}'".format(output.msg_type))