summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Deps.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Deps.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Deps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Deps.py b/src/lib/Bcfg2/Server/Plugins/Deps.py
index 1872e68af..7288698db 100644
--- a/src/lib/Bcfg2/Server/Plugins/Deps.py
+++ b/src/lib/Bcfg2/Server/Plugins/Deps.py
@@ -65,7 +65,7 @@ class Deps(Bcfg2.Server.Plugin.PrioDir,
# tuples of (PriorityStructFile, element) for each
# matching element and the structfile that contains it
matching = []
- for deps in self.entries.values():
+ for deps in list(self.entries.values()):
el = deps.find("/%s[name='%s']" % (entry.tag,
entry.get("name")))
if el: