diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2006-04-26 19:29:50 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2006-04-26 19:29:50 +0000 |
commit | d2002bbd09771560f8db380345c9c55c3abc1d38 (patch) | |
tree | a19d7f3b0a7631a4504da4e0546a1a6313ec90a2 /src/lib | |
parent | 5392e910068df83855024723110904b3ba0dd28a (diff) | |
download | bcfg2-d2002bbd09771560f8db380345c9c55c3abc1d38.tar.gz bcfg2-d2002bbd09771560f8db380345c9c55c3abc1d38.tar.bz2 bcfg2-d2002bbd09771560f8db380345c9c55c3abc1d38.zip |
Fix the "all entries correct" message when work remains to be done
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1856 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Client/Toolset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Client/Toolset.py b/src/lib/Client/Toolset.py index fc00f6a7b..a081f7de0 100644 --- a/src/lib/Client/Toolset.py +++ b/src/lib/Client/Toolset.py @@ -90,7 +90,7 @@ class Toolset(object): if not self.setup['bundle']: self.logger.info('Unmanaged entries:\t%d' % len(self.pkgwork['remove'])) - if ((self.states.values().count(False) > 0) and not self.pkgwork['remove']): + if ((self.states.values().count(False) == 0) and not self.pkgwork['remove']): self.logger.info('All entries correct.') # These next functions form the external API |