function calls with key arguments work now

This commit is contained in:
David Halter
2012-05-07 23:10:00 +02:00
parent 62123ed764
commit 33ad6d2b6f
3 changed files with 18 additions and 3 deletions

View File

@@ -132,7 +132,7 @@ class Executable(object):
print '\n\nlala', key, value
while key:
try:
key_param = param_dict[key]
key_param = param_dict[str(key)]
except KeyError:
non_matching_keys.append((key, value))
else: