diff --git a/src/cli/convert-json-toml.cpp b/src/cli/convert-json-toml.cpp index aa27fb0d82..f13317947d 100644 --- a/src/cli/convert-json-toml.cpp +++ b/src/cli/convert-json-toml.cpp @@ -20,7 +20,7 @@ void parsed_main(std::string jsonOrToml) using SL = json::SupportedLanguages; case SL::JSON: { auto asToml = json::jsonToToml(config); - std::cout << asToml; + std::cout << json::format_toml(asToml); } break; case SL::TOML: