From 86010b6ea4657b98386979e3363653a2f3a68210 Mon Sep 17 00:00:00 2001 From: Michael King Date: Tue, 13 Jan 2009 06:34:28 +0000 Subject: [PATCH] Removed "finally" keyword that breaks python 2.4 compatibility. This should work as expected without the "finally", as the exception will raise after the log message. --- src/cmdhandler.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cmdhandler.py b/src/cmdhandler.py index fa1d115f25..5369850762 100755 --- a/src/cmdhandler.py +++ b/src/cmdhandler.py @@ -283,7 +283,6 @@ def handle(command): (format_exc(),)) logger.log_errmsg("Untrapped error, evoker %s: %s" % (session, format_exc())) - finally: # Prevent things from falling through to UnknownCommand. raise ExitCommandHandler