diff options
author | Holger Weiß <holger@zedat.fu-berlin.de> | 2011-09-04 01:02:03 +0200 |
---|---|---|
committer | Holger Weiß <holger@zedat.fu-berlin.de> | 2011-09-04 01:02:03 +0200 |
commit | f83c86d87d95482587f6c652f5fd3d5e5238757a (patch) | |
tree | c680ef6d8b0f9e2fd72e6ba9b43c50cdf26181c2 | |
parent | 1cdc0aaa2982add970cf7ce3cb41bc20860cb7be (diff) | |
download | bcfg2-f83c86d87d95482587f6c652f5fd3d5e5238757a.tar.gz bcfg2-f83c86d87d95482587f6c652f5fd3d5e5238757a.tar.bz2 bcfg2-f83c86d87d95482587f6c652f5fd3d5e5238757a.zip |
Don't omit "important" entries from reports
Fix the problem that modified entries weren't included in the client
statistics if their "important" attribute was set to "true".
-rw-r--r-- | src/lib/Client/Frame.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py index d8e308ee0..dec3b42c2 100644 --- a/src/lib/Client/Frame.py +++ b/src/lib/Client/Frame.py @@ -206,6 +206,7 @@ class Frame: continue try: self.states[cfile] = tl[0].InstallPath(cfile) + tl[0].modified.append(cfile) except: self.logger.error("Unexpected tool failure", exc_info=1) |