From 8ae3e236ef25cda6b47473dda67fa9ec08851b90 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 22 Jul 2010 21:25:29 -0400 Subject: [PATCH] Python 2.5 doesn't allow fn(*args, imap=value) --- cookbook/server.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cookbook/server.py b/cookbook/server.py index 19b3d58..99dba5e 100644 --- a/cookbook/server.py +++ b/cookbook/server.py @@ -211,9 +211,9 @@ class Server (object): m = regexp.match(key) if m != None: handler = getattr(self, '_action_%s' % k) - action = handler(recipe, action, value, *m.groups(), - ingredient_block_map=ingredient_block_map, - ingredient_map=ingredient_map) + kws = {'ingredient_block_map': ingredient_block_map, + 'ingredient_map': ingredient_map} + action = handler(recipe, action, value, *m.groups(), **kws) break # button updates action = kwargs.get('action', action) @@ -225,9 +225,9 @@ class Server (object): m = regexp.match(action) if m != None: handler = getattr(self, '_action_%s' % a) - action = handler(recipe, action, *m.groups(), - ingredient_block_map=ingredient_block_map, - ingredient_map=ingredient_map) + kws = {'ingredient_block_map': ingredient_block_map, + 'ingredient_map': ingredient_map} + action = handler(recipe, action, *m.groups(), **kws) break return (name, recipe, action) -- 2.26.2