mirror of
https://github.com/evennia/evennia.git
synced 2026-03-26 09:46:32 +01:00
Easy Python 2.4 compatibility tweak. Don't think the 'finally' keyword existed in Python 2.4
This commit is contained in:
parent
b05fa3112f
commit
e0668e3573
1 changed files with 3 additions and 3 deletions
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue