summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2013-05-13 09:02:44 -0500
committerSol Jerome <sol.jerome@gmail.com>2013-05-13 09:02:44 -0500
commit59f85e6da78d2192274b49216cbefdced7a24ab6 (patch)
treefd5db04c005f644baa0dd30ef881c7248f72b482 /src
parent073f1e6fe1b564b1f00cb802fc36c56f739082ec (diff)
downloadbcfg2-59f85e6da78d2192274b49216cbefdced7a24ab6.tar.gz
bcfg2-59f85e6da78d2192274b49216cbefdced7a24ab6.tar.bz2
bcfg2-59f85e6da78d2192274b49216cbefdced7a24ab6.zip
Lint: Fix Properties Comments checker
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/lib/Bcfg2/Server/Lint/Comments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Lint/Comments.py b/src/lib/Bcfg2/Server/Lint/Comments.py
index 8bfb76461..85c4467ba 100644
--- a/src/lib/Bcfg2/Server/Lint/Comments.py
+++ b/src/lib/Bcfg2/Server/Lint/Comments.py
@@ -81,7 +81,7 @@ class Comments(Bcfg2.Server.Lint.ServerPlugin):
""" check properties files for required headers """
if 'Properties' in self.core.plugins:
props = self.core.plugins['Properties']
- for propfile, pdata in props.store.entries.items():
+ for propfile, pdata in props.entries.items():
if os.path.splitext(propfile)[1] == ".xml":
self.check_xml(pdata.name, pdata.xdata, 'properties')