From ed03add533eb8c9e06e63d1624006f3eafc42916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andre=CC=81=20Courtois?= Date: Thu, 1 Aug 2013 13:23:18 -0400 Subject: [PATCH] Start padding with 25 characters to keep original behavior --- plugins/commands/status/command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/status/command.rb b/plugins/commands/status/command.rb index 10a0f7ec4..722ba0819 100644 --- a/plugins/commands/status/command.rb +++ b/plugins/commands/status/command.rb @@ -12,7 +12,7 @@ module VagrantPlugins argv = parse_options(opts) return if !argv - max_name_length = 0 + max_name_length = 25 with_target_vms(argv) do |machine| max_name_length = machine.name.length if machine.name.length > max_name_length end