summaryrefslogtreecommitdiffstats
path: root/tools/rpmlisting.py
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 /tools/rpmlisting.py
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 'tools/rpmlisting.py')
-rw-r--r--tools/rpmlisting.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rpmlisting.py b/tools/rpmlisting.py
index 9cc1d2580..41b4772a0 100644
--- a/tools/rpmlisting.py
+++ b/tools/rpmlisting.py
@@ -162,7 +162,7 @@ pkgs = {
for filename in rpms:
(name, version, release, subarch) = parse_rpm_filename(rpmdir, filename)
rpmblob = {'file':filename, 'name':name, 'version':version, 'release':release, 'subarch':subarch}
- if pkgs.has_key(name):
+ if name in pkgs:
pkgs[name].append(rpmblob)
else:
pkgs[name] = [rpmblob]