From: Ian Jackson Date: Mon, 16 May 2022 00:48:36 +0000 (+0100) Subject: cli bundle progress: Say we're hashing, when we are. X-Git-Tag: otter-1.1.0~83 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=be54c51e55457c4f34b0568c6711d40912d1f732;p=otter.git cli bundle progress: Say we're hashing, when we are. Signed-off-by: Ian Jackson --- diff --git a/cli/usebundles.rs b/cli/usebundles.rs index f69af11a..197e2b2a 100644 --- a/cli/usebundles.rs +++ b/cli/usebundles.rs @@ -50,7 +50,7 @@ impl BundleForUpload { #[throws(AE)] pub fn prepare_open_file(file: &str, progress: &mut termprogress::Nest, f: File) -> Self { - progress.start_phase(PROGFRAC_HASH, default()); + progress.start_phase(PROGFRAC_HASH, "hashing".into()); let size = f .metadata().context("fstat bundle file")?