Merge pull request #1798 from hecko/master

fixes the status command output formatting
This commit is contained in:
Mitchell Hashimoto 2013-06-09 13:30:36 -07:00
commit 16139dc435
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