summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-07-24 03:01:59 +0000
committerMatt Wilson <msw@redhat.com>1999-07-24 03:01:59 +0000
commite6e51d1f3c054fa69f48f07d24d2e9211e0d24a2 (patch)
tree65ddb9f4f95f213da7210c5cb7e1fafcb1f23f49
parent8ccf2cb10fcd6cc8046b1175440d5cce21eb3f73 (diff)
downloadanaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.tar.gz
anaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.tar.xz
anaconda-e6e51d1f3c054fa69f48f07d24d2e9211e0d24a2.zip
fix text mode
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 3f375be6f..920ad70ae 100644
--- a/text.py
+++ b/text.py
@@ -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]] = []