[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:
parent
6d33fe440c
commit
4b9c21b5a6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue