diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-11-07 00:12:42 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-11-07 00:12:42 +0000 |
commit | 78aa9cde1b1518a19dc3c267e90f2c79be5c66e7 (patch) | |
tree | 7579978c73336c0192c75eaba37b18e7f81ae2b5 /instdata.py | |
parent | d201112cb6ad16751a17b1e3485d4d90a02699f9 (diff) | |
download | anaconda-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.py | 2 |
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 |