diff options
author | Matt Wilson <msw@redhat.com> | 1999-07-24 03:01:59 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-07-24 03:01:59 +0000 |
commit | e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2 (patch) | |
tree | 65ddb9f4f95f213da7210c5cb7e1fafcb1f23f49 | |
parent | 8ccf2cb10fcd6cc8046b1175440d5cce21eb3f73 (diff) | |
download | anaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.tar.gz anaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.tar.xz anaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.zip |
fix text mode
-rw-r--r-- | text.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ class IndividualPackageWindow: # go through all the headers and grok out the group names, placing # packages in lists in the groups dictionary. - for key in todo.hdList.keys(): + for key in todo.hdList.packages.keys(): header = todo.hdList.packages[key] if not groups.has_key (header[rpm.RPMTAG_GROUP]): groups[header[rpm.RPMTAG_GROUP]] = [] |