Cleanup around newline

This commit is contained in:
Matan Kushner 2019-04-12 13:17:20 -04:00
parent 653b9c1d5c
commit 7356faaec2
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4
1 changed files with 1 additions and 1 deletions

View File

@ -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()