summaryrefslogtreecommitdiffstats
path: root/src/sbin/bcfg2-info
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-info
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-info')
-rwxr-xr-xsrc/sbin/bcfg2-info4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sbin/bcfg2-info b/src/sbin/bcfg2-info
index 96da82bf7..c0c2673a5 100755
--- a/src/sbin/bcfg2-info
+++ b/src/sbin/bcfg2-info
@@ -190,7 +190,7 @@ Usage: [quit|exit]"""
prof = 'yes'
else:
prof = 'no'
- if self.metadata.categories.has_key(group):
+ if group in self.metadata.categories:
cat = self.metadata.categories[group]
else:
cat = ''
@@ -256,7 +256,7 @@ Usage: [quit|exit]"""
else:
interested = [(etype, generator.Entries[etype]) \
for etype in etypes \
- if generator.Entries.has_key(etype)]
+ if etype in generator.Entries]
for etype, names in interested:
for name in [name for name in names if name in \
generator.Entries.get(etype, {})]: