From 14e8482ac4d814abc2b589d416979b290e99872b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Sch=C3=A4fer?= Date: Fri, 26 Jan 2024 09:18:44 +0100 Subject: [PATCH] better function name --- kiwi/builder/live.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwi/builder/live.py b/kiwi/builder/live.py index 54abf0914df..a931792474c 100644 --- a/kiwi/builder/live.py +++ b/kiwi/builder/live.py @@ -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 @@ -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