diff --git a/src/print.rs b/src/print.rs index 4371c5ec..13c36799 100644 --- a/src/print.rs +++ b/src/print.rs @@ -15,7 +15,7 @@ pub fn prompt(args: ArgMatches) { let mut handle = stdout.lock(); // Write a new line before the prompt - write!(handle, "{}", "\n").unwrap(); + writeln!(handle).unwrap(); default_prompt .into_iter()