PollJob returns the whole op_results, hence a list of opcode results.
---
lib/rapi/rlib2.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/rapi/rlib2.py b/lib/rapi/rlib2.py
index bdbc4fa..fe148a6 100644
--- a/lib/rapi/rlib2.py
+++ b/lib/rapi/rlib2.py
@@ -1,7 +1,7 @@
#
#
-# Copyright (C) 2006, 2007, 2008, 2009, 2010 Google Inc.
+# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Google Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -403,7 +403,7 @@ class R_2_nodes_name_evacuate(baserlib.R_Generic):
result = cli.PollJob(job_id, cl, feedback_fn=baserlib.FeedbackFn)
jobs = []
- for iname, node in result:
+ for iname, node in result[0]:
if dry_run:
jid = None
else:
--
1.7.3.1