summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--exception.py2
-rw-r--r--floppy.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/exception.py b/exception.py
index 88ad65e81..833c4e49a 100644
--- a/exception.py
+++ b/exception.py
@@ -139,7 +139,7 @@ def dumpException(out, text, tb, dispatch):
if dispatch.id.grpset:
out.write("\n\nPackage Group selection status:\n")
- for comp in dispatch.id.grpset:
+ for comp in dispatch.id.grpset.groups.values():
out.write("%s: %s\n" % (comp.name,
comp.isSelected(justManual = 1)))
diff --git a/floppy.py b/floppy.py
index 7e6596d1c..0c6917517 100644
--- a/floppy.py
+++ b/floppy.py
@@ -49,14 +49,14 @@ def probeFloppyDevice():
log("anaconda floppy device is %s", fdDevice)
return fdDevice
-def makeBootdisk (intf, dir, floppyDevice, hdList, instPath, bootloader):
+def makeBootdisk (intf, dir, floppyDevice, grpset, instPath, bootloader):
if dir == DISPATCH_BACK:
return DISPATCH_NOOP
if flags.test:
return DISPATCH_NOOP
- kernel = hdList['kernel']
+ kernel = grpset.hdrlist['kernel']
kernelTag = "-%s-%s" % (kernel[rpm.RPMTAG_VERSION],
kernel[rpm.RPMTAG_RELEASE])