index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Aggam Rahamim <agamclass@gmail.com> | 2021-04-25 14:55:39 +0300 |
---|---|---|
committer | Aggam Rahamim <agamclass@gmail.com> | 2021-04-25 14:55:39 +0300 |
commit | 5c9859d316b8064949370c03745cfd99e0d67670 (patch) | |
tree | d697dcb0595a653a2ed269df4568c90c92a4107b /archinstall/lib/user_interaction.py | |
parent | 8b9f16a0284c5261a29b9818809cbe45a9c0c10b (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 4 |
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py index 99cf6274..3da24684 100644 --- a/archinstall/lib/user_interaction.py +++ b/archinstall/lib/user_interaction.py @@ -218,6 +218,8 @@ def generic_select(options, input_text="Select one of the above by index or abso 1: first 2: second 3: third option + + it will return the selected text. """ if type(options) == dict: options = list(options) @@ -263,7 +265,7 @@ def select_disk(dict_o_disks): elif drive.isdigit(): drive = int(drive) if drive >= len(drives): - raise DiskError(f'Selected option "{drive}" is out of range') + raise Dis1ror(f'Selected option "{drive}" is out of range') drive = dict_o_disks[drives[drive]] elif drive in dict_o_disks: drive = dict_o_disks[drive] |