Avoid right-padding commands with spaces

Primarily because it needlessly breaks tests.
This commit is contained in:
Dale Wijnand 2018-07-26 21:42:31 +01:00
parent 09cd53832c
commit cd55e0459c
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF

View File

@ -79,7 +79,7 @@ Run with 'cargo -Z [FLAG] [SUBCOMMAND]'"
if is_verbose {
println!(" {:<20} {}", name, path.display())
} else {
println!(" {:<20}", name)
println!(" {}", name)
}
}
}