Easy Python 2.4 compatibility tweak. Don't think the 'finally' keyword existed in Python 2.4

This commit is contained in:
Greg Taylor 2009-01-13 01:42:39 +00:00
parent b05fa3112f
commit e0668e3573

View file

@ -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):
"""