summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Bundler.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Bundler.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Bundler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Bundler.py b/src/lib/Bcfg2/Server/Plugins/Bundler.py
index 4f5a79465..bbdf62866 100644
--- a/src/lib/Bcfg2/Server/Plugins/Bundler.py
+++ b/src/lib/Bcfg2/Server/Plugins/Bundler.py
@@ -58,7 +58,7 @@ class Bundler(Plugin,
def HandleEvent(self, event):
XMLDirectoryBacked.HandleEvent(self, event)
self.bundles = dict([(b.bundle_name, b)
- for b in self.entries.values()])
+ for b in list(self.entries.values())])
def validate_structures(self, metadata, structures):
""" Translate <Path glob='...'/> entries into <Path name='...'/>
@@ -66,7 +66,7 @@ class Bundler(Plugin,
for struct in structures:
for pathglob in struct.xpath("//Path[@glob]"):
for plugin in self.core.plugins_by_type(Generator):
- for match in fnmatch.filter(plugin.Entries['Path'].keys(),
+ for match in fnmatch.filter(list(plugin.Entries['Path'].keys()),
pathglob.get("glob")):
lxml.etree.SubElement(pathglob.getparent(),
"Path", name=match)