Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:50:12 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-20 19:50:12 +0530
commit264db25eefd09a99ecdfa5f095b49343fc143d82 (patch)
tree3844be3e57c0aa545701474b28f9cc5f6b9832ed /archinstall
parent47202d9bf94941659946470615a8c6e013e4643e (diff)
call hasUEFI
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/user_interaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 9d09d8f1..818590dd 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -146,7 +146,7 @@ def ask_for_a_timezone():
def ask_for_bootloader() -> str:
bootloader = "systemd-bootctl"
- if hasUEFI==False:
+ if hasUEFI()==False:
bootloader="grub-install"
else:
bootloader_choice = input("Would you like to use Grub as a bootloader over systemd-boot [y/N] ").lower()