From mboxrd@z Thu Jan 1 00:00:00 1970 From: jparsons@sourceware.org Date: 12 Oct 2006 00:04:46 -0000 Subject: [Cluster-devel] conga/luci/site/luci/Extensions cluster_adapte ... Message-ID: <20061012000446.6095.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: jparsons at sourceware.org 2006-10-12 00:04:45 Modified files: luci/site/luci/Extensions: cluster_adapters.py Log message: wrong way to del props Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/cluster_adapters.py.diff?cvsroot=cluster&r1=1.98&r2=1.99 --- conga/luci/site/luci/Extensions/cluster_adapters.py 2006/10/11 23:56:17 1.98 +++ conga/luci/site/luci/Extensions/cluster_adapters.py 2006/10/12 00:04:45 1.99 @@ -2292,7 +2292,9 @@ node_report['statusmessage'] = "Node still being created" node_report['statusindex'] = creation_status nodereports.append(node_report) - item[1].manage_delProperties(LAST_STATUS) + propslist = list() + propslist.append(LAST_STATUS) + item[1].manage_delProperties(propslist) item[1].manage_addProperty(LAST_STATUS,creation_status, "int") continue