make ask_for_a_timezone as synonym to ask_timezone
This commit is contained in:
parent
d27dcd55ba
commit
2af790e1bf
|
|
@ -345,6 +345,9 @@ def ask_timezone() -> str:
|
|||
|
||||
return selected_tz
|
||||
|
||||
def ask_for_a_timezone() -> str:
|
||||
# compatibility with existing code
|
||||
return ask_timezone()
|
||||
|
||||
def ask_for_bootloader(advanced_options :bool = False) -> str:
|
||||
bootloader = "systemd-bootctl" if has_uefi() else "grub-install"
|
||||
|
|
|
|||
Loading…
Reference in New Issue