From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 27 Mar 2007 02:03:57 -0000 Subject: [Cluster-devel] conga/luci/site/luci/Extensions cluster_adapte ... Message-ID: <20070327020357.8182.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: rmccabe at sourceware.org 2007-03-27 03:03:57 Modified files: luci/site/luci/Extensions: cluster_adapters.py Log message: Fix a string format bug that could cause an exception to be raised Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/Extensions/cluster_adapters.py.diff?cvsroot=cluster&r1=1.251&r2=1.252 --- conga/luci/site/luci/Extensions/cluster_adapters.py 2007/03/16 03:19:39 1.251 +++ conga/luci/site/luci/Extensions/cluster_adapters.py 2007/03/27 02:03:56 1.252 @@ -696,7 +696,7 @@ if not success: incomplete = True - errors.append('An error occurred while attempting to add cluster node \"%s\"') + errors.append('An error occurred while attempting to add cluster node \"%s\"' % cur_host) if incomplete or len(errors) > 0: request.SESSION.set('add_node', add_cluster)