summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-11-24 09:47:43 +0100
committerJan Pokorný <jpokorny@redhat.com>2014-11-24 22:45:23 +0100
commit355c0a1f3288986b46f24901b4dbca437989aecf (patch)
treee3438398b03603223569efa6eee770e91552e124
parentfa568fb976b9a32b4cab70164db6c7b5ce679707 (diff)
downloadclufter-355c0a1f3288986b46f24901b4dbca437989aecf.tar.gz
clufter-355c0a1f3288986b46f24901b4dbca437989aecf.tar.xz
clufter-355c0a1f3288986b46f24901b4dbca437989aecf.zip
filters/ccs2needlexml[totem]: fix value-of string arg not quoted
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-rw-r--r--filters/cluster/totem/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/cluster/totem/__init__.py b/filters/cluster/totem/__init__.py
index b88bbb3..7c2b94c 100644
--- a/filters/cluster/totem/__init__.py
+++ b/filters/cluster/totem/__init__.py
@@ -37,7 +37,7 @@ ccs2needlexml = ('''\
<xsl:if test="(not(@secauth) or @secauth != 'off') and not(@keyfile)">
<xsl:message>%(key_message)s</xsl:message>
<xsl:attribute name="key">
- <xsl:value-of select="%(key)s"/>
+ <xsl:value-of select="'%(key)s'"/>
</xsl:attribute>
</xsl:if>
<!-- XXX bz1078343 -->