diff --git a/src/cargo-fmt/main.rs b/src/cargo-fmt/main.rs index 3c4d1c08b08..674099aa57b 100644 --- a/src/cargo-fmt/main.rs +++ b/src/cargo-fmt/main.rs @@ -96,7 +96,8 @@ fn execute() -> i32 { fn print_usage_to_stderr(reason: &str) { eprintln!("{}", reason); let app = Opts::clap(); - app.write_help(&mut io::stderr()) + app.after_help("") + .write_help(&mut io::stderr()) .expect("failed to write to stderr"); }