From b8eb8e62bca191f523f09b6bfa3ce081fa16dff0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 23 Sep 2022 15:02:59 +0200 Subject: [PATCH] Remove excess line breaks in yabridgectl status --- tools/yabridgectl/src/actions.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/yabridgectl/src/actions.rs b/tools/yabridgectl/src/actions.rs index 2db2ac47..2a3438b6 100644 --- a/tools/yabridgectl/src/actions.rs +++ b/tools/yabridgectl/src/actions.rs @@ -112,7 +112,7 @@ pub fn show_status(config: &Config) -> Result<()> { } } // These are, but just from a UX point of view it might be nice to have as a reminder - println!("VST3 location: '{}'\n", yabridge_vst3_home().display()); + println!("VST3 location: '{}'", yabridge_vst3_home().display()); println!("CLAP location: '{}'\n", yabridge_clap_home().display()); let files = config.files(); @@ -124,7 +124,7 @@ pub fn show_status(config: &Config) -> Result<()> { files.vst2_chainloader_arch, ); println!( - "{VST3_CHAINLOADER_NAME}: {}\n", + "{VST3_CHAINLOADER_NAME}: {}", files .vst3_chainloader .as_ref()