Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2022-01-25 09:31:38 -0500
committerGitHub <noreply@github.com>2022-01-25 15:31:38 +0100
commit5406f1ed4541f46b28435434be04e82ee4378f1b (patch)
treea92f5ef764425b68e51ac205bd4587a914ecc030 /archinstall/lib/disk
parenteb712a9ca557f594d891b5b6942692b6c98de62c (diff)
Make text for getting filesystems more grammatically correct (#903)
* Make text for getting filesystems more grammatically correct Use 'Retry attempt {count} of 10.' instead of Waiting for the {count} time". It's more grammatically correct since we're not doing '1st', '2nd', etc. * Maybe mention waiting still
Diffstat (limited to 'archinstall/lib/disk')
-rw-r--r--archinstall/lib/disk/filesystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index edae5378..a4fe2cff 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -200,7 +200,7 @@ class Filesystem:
raise err
else:
count += 1
- log(f"Could not get UUID for partition. Waiting for the {count} time",level=logging.DEBUG)
+ log(f"Could not get UUID for partition. Waiting before retry attempt {count} of 10 ...",level=logging.DEBUG)
time.sleep(float(storage['arguments'].get('disk-sleep', 0.2)))
else:
log("Add partition is exiting due to excessive wait time",level=logging.INFO)