summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Lint/Comments.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-07-24 11:32:56 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-07-24 11:33:10 -0400
commitdcf8fddddfa98f39549b57c89c5f79275b0c6b1c (patch)
treec46152862cb1cf0666c7bd531e0f008829cf04ea /src/lib/Bcfg2/Server/Lint/Comments.py
parent73ac82182e4cdf2d6371f24455ff7bda71afae81 (diff)
downloadbcfg2-dcf8fddddfa98f39549b57c89c5f79275b0c6b1c.tar.gz
bcfg2-dcf8fddddfa98f39549b57c89c5f79275b0c6b1c.tar.bz2
bcfg2-dcf8fddddfa98f39549b57c89c5f79275b0c6b1c.zip
allow xinclude files to be missing if xi:fallback is provided
Diffstat (limited to 'src/lib/Bcfg2/Server/Lint/Comments.py')
-rw-r--r--src/lib/Bcfg2/Server/Lint/Comments.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Lint/Comments.py b/src/lib/Bcfg2/Server/Lint/Comments.py
index f5d0e265f..59d18fc57 100644
--- a/src/lib/Bcfg2/Server/Lint/Comments.py
+++ b/src/lib/Bcfg2/Server/Lint/Comments.py
@@ -1,6 +1,7 @@
-import os.path
+import os
import lxml.etree
import Bcfg2.Server.Lint
+from Bcfg2.Server import XI, XI_NAMESPACE
from Bcfg2.Server.Plugins.Cfg.CfgPlaintextGenerator import CfgPlaintextGenerator
from Bcfg2.Server.Plugins.Cfg.CfgGenshiGenerator import CfgGenshiGenerator
from Bcfg2.Server.Plugins.Cfg.CfgCheetahGenerator import CfgCheetahGenerator
@@ -186,7 +187,7 @@ class Comments(Bcfg2.Server.Lint.ServerPlugin):
path = os.path.join(self.metadata.data, mfile)
if path in self.files:
xdata = lxml.etree.parse(path)
- for el in xdata.findall('./{http://www.w3.org/2001/XInclude}include'):
+ for el in xdata.findall('./%sinclude' % XI_NAMESPACE):
if not self.has_all_xincludes(el.get('href')):
self.LintError("broken-xinclude-chain",
"Broken XInclude chain: could not include %s" % path)