summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-11-07 00:12:42 +0000
committerJeremy Katz <katzj@redhat.com>2002-11-07 00:12:42 +0000
commit78aa9cde1b1518a19dc3c267e90f2c79be5c66e7 (patch)
tree7579978c73336c0192c75eaba37b18e7f81ae2b5 /instdata.py
parentd201112cb6ad16751a17b1e3485d4d90a02699f9 (diff)
downloadanaconda-78aa9cde1b1518a19dc3c267e90f2c79be5c66e7.tar.gz
anaconda-78aa9cde1b1518a19dc3c267e90f2c79be5c66e7.tar.xz
anaconda-78aa9cde1b1518a19dc3c267e90f2c79be5c66e7.zip
use all of the packages related to the comp, not just the selected ones. this makes us somewhat overly verbose, but it really does look right now (#73195)
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instdata.py b/instdata.py
index 2a2f3990b..371aef084 100644
--- a/instdata.py
+++ b/instdata.py
@@ -154,7 +154,7 @@ class InstallData:
and comp.name != "Core"):
f.write("@ %s\n" % comp.name)
- for pkg in comp.packages():
+ for pkg in comp.newpkgDict.keys():
# if it's in base or core, it really should be installed
if comp.name == "Base" or comp.name == "Core":
packages[pkg] = 1