index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Hugo Ankarloo <hugo@ilait.se> | 2021-09-21 00:38:20 +0200 |
---|---|---|
committer | Hugo Ankarloo <hugo@ilait.se> | 2021-09-21 00:38:20 +0200 |
commit | 5bcbb50936690deff12a085634215c2d4f42f38c (patch) | |
tree | a863f58a9f9d3f1ac6029785b8bffbda2bf1f6c5 | |
parent | e71a41377d2d97fce98afc4f64ed5f1caa830ec9 (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 2 |
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py index be74f9b9..ba6259b1 100644 --- a/archinstall/lib/user_interaction.py +++ b/archinstall/lib/user_interaction.py @@ -674,7 +674,7 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> dict: if input(f"{block_device} contains queued partitions, this will remove those, are you sure? y/N: ").strip().lower() in ('', 'n'): continue - block_device_struct.update( suggest_single_disk_layout(block_device)[block_device] ) + block_device_struct.update( suggest_single_disk_layout(block_device)[block_device.path] ) elif task is None: return block_device_struct else: |