From e0668e357362c6bf2149f525dac58ee99e4298a0 Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Tue, 13 Jan 2009 01:42:39 +0000 Subject: [PATCH] Easy Python 2.4 compatibility tweak. Don't think the 'finally' keyword existed in Python 2.4 --- src/cmdhandler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmdhandler.py b/src/cmdhandler.py index 14814b4976..fa1d115f25 100755 --- a/src/cmdhandler.py +++ b/src/cmdhandler.py @@ -77,9 +77,9 @@ class Command(object): No arguments. IE: look, who. """ self.command_string = self.raw_input - finally: - # Parse command_string for switches, regardless of what happens. - self.parse_command_switches() + + # Parse command_string for switches, regardless of what happens. + self.parse_command_switches() def __init__(self, raw_input, server=None, session=None): """