From 61b8da9ef86f2cd5fa63a05c976f43d1d75c2537 Mon Sep 17 00:00:00 2001 From: Alexander Weiss Date: Sat, 28 Jan 2023 06:18:42 +0100 Subject: [PATCH] fix clippy hints --- src/commands/tag.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/tag.rs b/src/commands/tag.rs index 9e1131b..21a47c6 100644 --- a/src/commands/tag.rs +++ b/src/commands/tag.rs @@ -106,7 +106,7 @@ pub(super) fn execute( match (old_snap_ids.is_empty(), opts.dry_run) { (true, _) => println!("no snapshot changed."), (false, true) => { - println!("would have modified the following snapshots:\n {old_snap_ids:?}") + println!("would have modified the following snapshots:\n {old_snap_ids:?}"); } (false, false) => { let p = progress_counter("saving new snapshots...");