From 464c1e3cb90f3d97aaa5e1ac3054e3e90ec8515f Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 28 Jun 2005 20:57:32 +0000 Subject: [PATCH] src/callbacks: Remove a duplicate except statement. --- src/callbacks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index abcd26501..3432d4993 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -1177,8 +1177,6 @@ class Commands(BasePlugin): except (SyntaxError, Error), e: self.log.debug('Error return: %s', utils.exnToString(e)) irc.error(str(e)) - except Error, e: - irc.error(str(e)) except Exception, e: self.log.exception('Uncaught exception in %s.', command) if conf.supybot.reply.error.detailed():