From 473a804822ffb134a8115c826bddbdfdede8674a Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Mon, 22 Jul 2024 16:12:16 +0200 Subject: import-to-git: fix typo in format string --- src/other_tools/ops_maps/import_to_git_map.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/other_tools/ops_maps/import_to_git_map.cpp b/src/other_tools/ops_maps/import_to_git_map.cpp index 51a4548e..ddbfa115 100644 --- a/src/other_tools/ops_maps/import_to_git_map.cpp +++ b/src/other_tools/ops_maps/import_to_git_map.cpp @@ -199,10 +199,11 @@ auto CreateImportToGitMap( [logger, target_path](auto const& msg, bool fatal) { (*logger)( - fmt::format("While doing keep commit " - "and setting Git tree:\n{}", - target_path.string(), - msg), + fmt::format( + "While doing keep commit " + "and setting Git tree {}:\n{}", + target_path.string(), + msg), fatal); }); KeepCommitAndSetTree(critical_git_op_map, -- cgit v1.2.3