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.
This commit is contained in:
Michael King 2009-01-13 06:34:28 +00:00
parent e0668e3573
commit 86010b6ea4

View file

@ -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