Skip to content

Commit

Permalink
better function name
Browse files Browse the repository at this point in the history
  • Loading branch information
schaefi committed Jan 26, 2024
1 parent d209a57 commit 14e8482
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiwi/builder/live.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def create(self) -> Result:
log.info(
'Setting up live image bootloader configuration'
)
with self._bootloader_instance() as bootloader_config:
with self._create_bootloader_instance() as bootloader_config:
if self.firmware.efi_mode():
bootloader_config.setup_live_boot_images(
mbrid=self.mbrid, lookup_path=self.root_dir
Expand Down Expand Up @@ -347,7 +347,7 @@ def create(self) -> Result:
)
return self.result

def _bootloader_instance(self) -> BootLoaderConfigBase:
def _create_bootloader_instance(self) -> BootLoaderConfigBase:
if self.firmware.efi_mode():
# setup bootloader config to boot the ISO via EFI
# This also embedds an MBR and the respective BIOS modules
Expand Down

0 comments on commit 14e8482

Please sign in to comment.