Browse Source

refactor(clippy): clippy::uninlined_format_args

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
Christina Sørensen 2 năm trước cách đây
mục cha
commit
63c6fb5a8a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/fs/feature/git.rs

+ 1 - 1
src/fs/feature/git.rs

@@ -397,7 +397,7 @@ impl f::SubdirGitRepo{
                     return Self{status : f::SubdirGitRepoStatus::GitClean, branch};
                 }
                 Err(e) => {
-                    error!("Error looking up Git statuses: {:?}", e);
+                    error!("Error looking up Git statuses: {e:?}");
                 }
             }
         }