From de58e41ed4713ecd17bd3045f50a4a6dfdd43b8f Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 5 Dec 2023 12:57:51 -0600 Subject: [PATCH] cargo fmt --- src/repo.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/repo.rs b/src/repo.rs index 5fa8436..b075866 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -653,7 +653,10 @@ where } let Some(main_identifier) = repo.identifier::(hash.clone()).await? else { - tracing::warn!("Missing identifier for hash {}, queueing cleanup", hex::encode(&hash)); + tracing::warn!( + "Missing identifier for hash {}, queueing cleanup", + hex::encode(&hash) + ); crate::queue::cleanup_hash(repo, hash.clone()).await?; return Err(RepoError::Missing("hash -> identifier").into()); };