From 1578924579d7e9e1144e0704e07eddceb65e9404 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sat, 4 Nov 2023 11:35:19 +0100 Subject: [PATCH] lint --- src/http_async.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http_async.rs b/src/http_async.rs index 510d039..ce977e4 100644 --- a/src/http_async.rs +++ b/src/http_async.rs @@ -31,7 +31,7 @@ pub async fn download_file( misc::cute_path(path), misc::human_readable_bytes(total_size) )); - pb.set_message(format!("{}", path.file_name().unwrap().to_str().unwrap())); + pb.set_message(path.file_name().unwrap().to_str().unwrap().to_string()); let mut file = File::create(path).or(Err(format!("Failed to create file '{}'", path.display())))?;