Skip to content

Commit cd55e04

Browse files
committed
Avoid right-padding commands with spaces
Primarily because it needlessly breaks tests.
1 parent 09cd538 commit cd55e04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Run with 'cargo -Z [FLAG] [SUBCOMMAND]'"
7979
if is_verbose {
8080
println!(" {:<20} {}", name, path.display())
8181
} else {
82-
println!(" {:<20}", name)
82+
println!(" {}", name)
8383
}
8484
}
8585
}

0 commit comments

Comments
 (0)