From ff3be305926f86486fb4eacc24816be3dcfaa66a Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Wed, 30 Nov 2011 14:38:15 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20=E2=80=9Cnode=5Finfo=E2=80=9D=20RPC=20res?= =?UTF-8?q?ult?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 78519c106 broke everything. Here's the fix. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- lib/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/backend.py b/lib/backend.py index 524e2cc0b..632c93208 100644 --- a/lib/backend.py +++ b/lib/backend.py @@ -567,7 +567,7 @@ def _GetNamedNodeInfo(names, fn): if names is None: return None else: - return dict((name, fn(name)) for name in names) + return map(fn, names) def GetNodeInfo(vg_names, hv_names): -- GitLab