diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-08-06 10:18:50 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2012-08-06 10:19:18 -0400 |
commit | a166b805986ad89460de63e90dde64e3d792845d (patch) | |
tree | 5da518bd415beb897bcf0a4204e2647f11abc34a /src/lib | |
parent | a296172ffbb53c0cec147c470f212f6332e6281a (diff) | |
download | bcfg2-a166b805986ad89460de63e90dde64e3d792845d.tar.gz bcfg2-a166b805986ad89460de63e90dde64e3d792845d.tar.bz2 bcfg2-a166b805986ad89460de63e90dde64e3d792845d.zip |
bug fixes from solj
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Bcfg2/Server/Plugins/Packages/Collection.py | 2 |
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 |