From 5406f1ed4541f46b28435434be04e82ee4378f1b Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Tue, 25 Jan 2022 09:31:38 -0500 Subject: 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 --- archinstall/lib/disk/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archinstall/lib/disk') 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) -- cgit v1.2.3-54-g00ecf