summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Packages/Collection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Packages/Collection.py b/src/lib/Bcfg2/Server/Plugins/Packages/Collection.py
index a42561f2e..c4c34c5aa 100644
--- a/src/lib/Bcfg2/Server/Plugins/Packages/Collection.py
+++ b/src/lib/Bcfg2/Server/Plugins/Packages/Collection.py
@@ -205,7 +205,7 @@ class Collection(Bcfg2.Server.Plugin.Debuggable):
and the initial package list. this is necessary because the
format may be different between the two lists due to
packages_{to,from}_entry() """
- return list(packages.difference(initial))
+ return list(complete.difference(initial))
def complete(self, packagelist):
'''Build the transitive closure of all package dependencies