From be54c51e55457c4f34b0568c6711d40912d1f732 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 16 May 2022 01:48:36 +0100 Subject: [PATCH] cli bundle progress: Say we're hashing, when we are. Signed-off-by: Ian Jackson --- cli/usebundles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")? -- 2.30.2