index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2022-08-01 18:28:41 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-01 10:28:41 +0200 |
commit | 1bd2210e5f100ed96411c65a25c7f89dd854b35b (patch) | |
tree | 1cf3afe69407d6f0b341005dc4c503ddc3f25d04 /archinstall/lib/user_interaction/system_conf.py | |
parent | 3da03a192e3dc47c0e0c08302d28e9f3a62bcd0f (diff) |
-rw-r--r-- | archinstall/lib/user_interaction/system_conf.py | 8 |
diff --git a/archinstall/lib/user_interaction/system_conf.py b/archinstall/lib/user_interaction/system_conf.py index f4ada14b..0416e91f 100644 --- a/archinstall/lib/user_interaction/system_conf.py +++ b/archinstall/lib/user_interaction/system_conf.py @@ -32,8 +32,8 @@ def select_kernel(preset: List[str] = None) -> List[str]: sort=True, multi=True, preset_values=preset, - explode_on_interrupt=True, - explode_warning=warning + raise_error_on_interrupt=True, + raise_error_warning_msg=warning ).run() match choice.type_: @@ -67,8 +67,8 @@ def select_harddrives(preset: List[str] = []) -> List[str]: list(options.keys()), preset_values=list(preset_disks.keys()), multi=True, - explode_on_interrupt=True, - explode_warning=warning + raise_error_on_interrupt=True, + raise_error_warning_msg=warning ).run() match selected_harddrive.type_: |