Skip to content

Commit

Permalink
Auto merge of #5779 - alexcrichton:msg, r=dwijnand
Browse files Browse the repository at this point in the history
Fix a formatting of a cargo fix message

Something I saw in the report of #5775
  • Loading branch information
bors committed Jul 24, 2018
2 parents 773e3b6 + 32a2888 commit 5a386e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/util/diagnostic_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl Message {
config.shell().warn(&msg)?;
write!(
config.shell().err(),
"The full error message was:\n\n> {}",
"The full error message was:\n\n> {}\n\n",
message,
)?;
write!(config.shell().err(), "{}", PLEASE_REPORT_THIS_BUG)?;
Expand Down

0 comments on commit 5a386e9

Please sign in to comment.