make ask_for_a_timezone as synonym to ask_timezone

This commit is contained in:
Werner Llácer 2022-02-05 01:43:34 +01:00
parent d27dcd55ba
commit 2af790e1bf
1 changed files with 3 additions and 0 deletions

View File

@ -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"