index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2022-01-25 16:09:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-25 16:09:34 +0100 |
commit | 1aa738691e261b3dfaf5195ec7636617a283d47a (patch) | |
tree | 984508bfe332ea5cbe3bd2885a9b3c2cfe4ae9d4 /archinstall/lib/disk/blockdevice.py | |
parent | 5406f1ed4541f46b28435434be04e82ee4378f1b (diff) |
-rw-r--r-- | archinstall/lib/disk/blockdevice.py | 2 |
diff --git a/archinstall/lib/disk/blockdevice.py b/archinstall/lib/disk/blockdevice.py index 5288f92b..5ffa06a8 100644 --- a/archinstall/lib/disk/blockdevice.py +++ b/archinstall/lib/disk/blockdevice.py @@ -241,7 +241,7 @@ class BlockDevice: count = 0 while count < 5: for partition_uuid, partition in self.partitions.items(): - if partition.uuid == uuid: + if partition.uuid.lower() == uuid.lower(): return partition else: log(f"uuid {uuid} not found. Waiting for {count +1} time",level=logging.DEBUG) |