summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-22 16:54:49 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-22 17:08:43 -0400
commit80b4ca09bf4a815efd0726b96e3d032f76e1366d (patch)
tree7dcb9df1d84193388748874bb3bd1d86cb9606aa /src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py
parent861ac7ceee27c263c024eaf76941c0ab711bf8ba (diff)
downloadbcfg2-80b4ca09bf4a815efd0726b96e3d032f76e1366d.tar.gz
bcfg2-80b4ca09bf4a815efd0726b96e3d032f76e1366d.tar.bz2
bcfg2-80b4ca09bf4a815efd0726b96e3d032f76e1366d.zip
do not require a priority attribute on InfoXML files at all
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py b/src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py
index 92cf45824..956ebfe17 100644
--- a/src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py
+++ b/src/lib/Bcfg2/Server/Plugins/Cfg/CfgInfoXML.py
@@ -9,7 +9,7 @@ class CfgInfoXML(CfgInfo):
def __init__(self, path):
CfgInfo.__init__(self, path)
- self.infoxml = Bcfg2.Server.Plugin.InfoXML(path, noprio=True)
+ self.infoxml = Bcfg2.Server.Plugin.InfoXML(path)
def bind_info_to_entry(self, entry, metadata):
mdata = dict()