index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2022-05-27 12:24:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 12:24:01 +0200 |
commit | 9b3db344aba22644ccf1fd09ad163395fd5e40be (patch) | |
tree | 829328acf970b56d1680006d21d9ba694d32bc67 /archinstall/lib/disk/partition.py | |
parent | 870da403e79ab50350803b45f200e0b272334989 (diff) |
-rw-r--r-- | archinstall/lib/disk/partition.py | 4 |
diff --git a/archinstall/lib/disk/partition.py b/archinstall/lib/disk/partition.py index e33c600c..bb1ffeb6 100644 --- a/archinstall/lib/disk/partition.py +++ b/archinstall/lib/disk/partition.py @@ -101,7 +101,7 @@ class Partition: except SysCallError as error: # Not mounted anywhere most likely - log(f"Could not locate mount information for {self.path}: {error}", level=logging.DEBUG) + log(f"Could not locate mount information for {self.path}: {error}", level=logging.DEBUG, fg="grey") pass return None @@ -216,7 +216,7 @@ class Partition: if not self.partprobe(): raise DiskError(f"Could not perform partprobe on {self.device_path}") - time.sleep(max(0.1, storage['DISK_TIMEOUTS'] * i)) + time.sleep(storage.get('DISK_TIMEOUTS', 1) * i) partuuid = self._safe_uuid if partuuid: |