diff --git a/src/command/handlers.rs b/src/command/handlers.rs index 21ffcf1..fa24ba4 100644 --- a/src/command/handlers.rs +++ b/src/command/handlers.rs @@ -106,7 +106,7 @@ pub async fn handle_get(config_dir: &Path, name: String, json: bool) -> Result<( if json { println!("{}", cleartext.to_json()?) } else { - println!("{}", cleartext.value) + print!("{}", cleartext.value) } Ok(())