[status command print formatting]

the result line needs space between the name of the VM and short_description - otherwise the formatting of the output breaks when the name of the VM is too long - the name of the VM gets smashed together with the short_description rendering
This commit is contained in:
Marcel Hecko 2013-06-05 14:10:24 +02:00
parent 6d33fe440c
commit 4b9c21b5a6
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ module VagrantPlugins
results = []
with_target_vms(argv) do |machine|
state = machine.state if !state
results << "#{machine.name.to_s.ljust(25)}#{machine.state.short_description} (#{machine.provider_name})"
results << "#{machine.name.to_s.ljust(25)} #{machine.state.short_description} (#{machine.provider_name})"
end
message = nil