We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
list
1 parent 6d1e17f commit 3c41c54Copy full SHA for 3c41c54
src/commands/list.rs
@@ -110,7 +110,7 @@ pub fn execute(path_db: &Path, args: ListArgs) -> Result<()> {
110
.join("\n");
111
112
let mut stdout = stdout().lock();
113
- ignore_broken_pipe(write!(&mut stdout, "{output}",))
+ ignore_broken_pipe(writeln!(&mut stdout, "{output}",))
114
.into_diagnostic()
115
.context("failed to write to STDOUT")?;
116
ignore_broken_pipe(stdout.flush())
0 commit comments