summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Core.py')
-rw-r--r--src/lib/Bcfg2/Server/Core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Core.py b/src/lib/Bcfg2/Server/Core.py
index 377932614..43f2ce68c 100644
--- a/src/lib/Bcfg2/Server/Core.py
+++ b/src/lib/Bcfg2/Server/Core.py
@@ -554,7 +554,7 @@ class BaseCore(object):
for probe in plugin.GetProbes(metadata):
resp.append(probe)
return lxml.etree.tostring(resp, encoding='UTF-8',
- xml_declaration=True)
+ xml_declaration=False)
except:
err = sys.exc_info()[1]
self.critical_error("Error determining probes for %s: %s" %
@@ -609,7 +609,7 @@ class BaseCore(object):
try:
config = self.BuildConfiguration(client)
return lxml.etree.tostring(config, encoding='UTF-8',
- xml_declaration=True)
+ xml_declaration=False)
except Bcfg2.Server.Plugin.MetadataConsistencyError:
self.critical_error("Metadata consistency failure for %s" % client)