summaryrefslogtreecommitdiffstats
path: root/booty/x86.py
diff options
context:
space:
mode:
Diffstat (limited to 'booty/x86.py')
-rw-r--r--booty/x86.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/booty/x86.py b/booty/x86.py
index 97354fc72..d9bebcb4c 100644
--- a/booty/x86.py
+++ b/booty/x86.py
@@ -578,15 +578,15 @@ class x86BootloaderInfo(efiBootloaderInfo):
return args
- def __init__(self, storage, network):
- bootloaderInfo.__init__(self, storage, network)
+ def __init__(self, instData):
+ bootloaderInfo.__init__(self, instData)
# these have to be set /before/ efiBootloaderInfo.__init__(), or
# they'll be overwritten.
self._configdir = "/boot/grub"
self._configname = "grub.conf"
- efiBootloaderInfo.__init__(self, storage, network, initialize=False)
+ efiBootloaderInfo.__init__(self, instData, initialize=False)
# XXX use checkbootloader to determine what to default to
self.useGrubVal = 1