summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-reports
diff options
context:
space:
mode:
authorSol Jerome <solj@ices.utexas.edu>2008-12-22 04:09:48 +0000
committerSol Jerome <solj@ices.utexas.edu>2008-12-22 04:09:48 +0000
commite3fb140c8d44d751766535eedefcc4ada6544bd1 (patch)
tree9cfe7aa923ec2b1f2e17df1ced892508987b9a6f /src/sbin/bcfg2-reports
parent5ab6c7a56e1cb16fee6b04a2b74e615f8f4c557e (diff)
downloadbcfg2-e3fb140c8d44d751766535eedefcc4ada6544bd1.tar.gz
bcfg2-e3fb140c8d44d751766535eedefcc4ada6544bd1.tar.bz2
bcfg2-e3fb140c8d44d751766535eedefcc4ada6544bd1.zip
Update dictionary accesses to work with Python 3.0
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4999 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/sbin/bcfg2-reports')
-rwxr-xr-xsrc/sbin/bcfg2-reports4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbin/bcfg2-reports b/src/sbin/bcfg2-reports
index 16b9cd11e..abe24d037 100755
--- a/src/sbin/bcfg2-reports
+++ b/src/sbin/bcfg2-reports
@@ -232,7 +232,7 @@ else:
for item in baditems:
if item.name == badentry[1] and item.kind == badentry[0]:
result.append(c_inst)
- if entrydict.has_key(c_inst):
+ if c_inst in entrydict:
entrydict.get(c_inst).append(badentry[1])
else:
entrydict[c_inst] = [badentry[1]]
@@ -254,7 +254,7 @@ else:
for item in extraitems:
if item.name == extraentry[1] and item.kind == extraentry[0]:
result.append(c_inst)
- if entrydict.has_key(c_inst):
+ if c_inst in entrydict:
entrydict.get(c_inst).append(extraentry[1])
else:
entrydict[c_inst] = [extraentry[1]]