From 6cc3128c64a35aa9d1065ea0ae46b53694fcf958 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Fri, 11 Jul 2025 07:30:28 -0700 Subject: [PATCH] rustfmt --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6faf732..6ef8eef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -273,9 +273,7 @@ fn args() -> Result { // the directory does not exist Err(_) => { // since certificate management should be automated, we are going to create the directory too - log::info!( - "The certificate directory {certs_path:?} does not exist, creating it." - ); + log::info!("The certificate directory {certs_path:?} does not exist, creating it."); std::fs::create_dir(&certs_path).expect("could not create certificate directory"); // we just created the directory, skip loading from it (None, PathBuf::from(certs_path))