Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/helpers/user_interaction.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-06-30 21:22:28 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-06-30 21:22:28 +0000
commit0399df8c25caccd26ef61b703d6b1c43a7ddcec9 (patch)
treeee2cdd6ea741ec1779ea51d36dcdb94602d416fb /helpers/user_interaction.py
parent5ae18b80fd118cc07108694feb81e5e02a9b18f3 (diff)
Working partition and encryption+mount phase. Now to the installer and re-work that.
Diffstat (limited to 'helpers/user_interaction.py')
-rw-r--r--helpers/user_interaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/user_interaction.py b/helpers/user_interaction.py
index 1b7e85cf..c19919c6 100644
--- a/helpers/user_interaction.py
+++ b/helpers/user_interaction.py
@@ -4,7 +4,7 @@ def select_disk(dict_o_disks):
drives = sorted(list(dict_o_disks.keys()))
if len(drives) > 1:
for index, drive in enumerate(drives):
- print(f"{index}: {drive} ({dict_o_disks[drive]['size'], dict_o_disks[drive]['backplane'], dict_o_disks[drive]['label']})")
+ print(f"{index}: {drive} ({dict_o_disks[drive]['size'], dict_o_disks[drive].device, dict_o_disks[drive]['label']})")
drive = input('Select one of the above disks (by number or full path): ')
if drive.isdigit():
drive = dict_o_disks[drives[int(drive)]]