index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 14:29:41 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 14:29:41 +0000 |
commit | c2bfc4e34030f85a42820ac8505d3eaf9e109db5 (patch) | |
tree | 83144050c8ca8972ecb6bd419cd403a32db926e4 /archinstall/lib/disk | |
parent | 4ea7feb04e2a742435b45db242c91c0f2b88000c (diff) |
-rw-r--r-- | archinstall/lib/disk/blockdevice.py | 8 |
diff --git a/archinstall/lib/disk/blockdevice.py b/archinstall/lib/disk/blockdevice.py index 8ee5e74a..2cdd741c 100644 --- a/archinstall/lib/disk/blockdevice.py +++ b/archinstall/lib/disk/blockdevice.py @@ -217,8 +217,8 @@ class BlockDevice: def get_partition(self, uuid): count = 0 while count < 5: - for partition in self.partitions: - if partition.uuid == uuid: + for partition_uuid, partition in self.partitions.items(): + if partition_uuid == uuid: return partition else: log(f"uuid {uuid} not found. Waiting for {count +1} time",level=logging.DEBUG) @@ -226,7 +226,7 @@ class BlockDevice: count += 1 else: log(f"Could not find {uuid} in disk after 5 retries",level=logging.INFO) - print(f"Partitions: {self.partitions}") - print(f"UUID parts: {partition.uuid for partition in self.partitions}") + print(f"Cache: {self.part_cache}") + print(f"Partitions: {self.partitions.items()}") print(f"UUID: {[uuid]}") raise DiskError(f"New partition {uuid} never showed up after adding new partition on {self}") |