Skip to content

Commit c60a989

Browse files
committed
remove newline after stacktrace
1 parent 4c54520 commit c60a989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ fn handle_cause(mut cargo_err: &CargoError, shell: &mut MultiShell) -> bool {
204204

205205
fn print(error: String, shell: &mut MultiShell) {
206206
let _ = shell.err().say("\nCaused by:", BLACK);
207-
let _ = shell.err().say(format!(" {}\n", error), BLACK);
207+
let _ = shell.err().say(format!(" {}", error), BLACK);
208208
}
209209
}
210210

0 commit comments

Comments
 (0)