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:
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)]]