index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2021-11-10 11:40:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 11:40:47 +0000 |
commit | faadc2b96831a2f55fa7430a3c4ae63c172cefa6 (patch) | |
tree | af503266810a971d51d45b73ff1eace96413401e /archinstall/lib | |
parent | 671c7b38545079136f804e0fb5b77e21f0dba44f (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 493e5383..5204f09b 100644 --- a/archinstall/lib/disk/blockdevice.py +++ b/archinstall/lib/disk/blockdevice.py @@ -223,7 +223,7 @@ class BlockDevice: else: log(f"uuid {uuid} not found. Waiting for {count +1} time",level=logging.DEBUG) time.sleep(float(storage['arguments'].get('disk-sleep', 0.2))) - count +=1 + count += 1 else: log(f"Could not find {uuid} in disk after 5 retries",level=logging.INFO) raise DiskError(f"New partition {uuid} never showed up after adding new partition on {self}") |