From 8ef13b037c82662bf2459ca9cb63a477eab07204 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 23 Jan 2014 19:30:30 -0800 Subject: [PATCH] core: add a space to the question; --- lib/vagrant/action/builtin/box_add.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant/action/builtin/box_add.rb b/lib/vagrant/action/builtin/box_add.rb index 138f81c75..0553a3dd0 100644 --- a/lib/vagrant/action/builtin/box_add.rb +++ b/lib/vagrant/action/builtin/box_add.rb @@ -113,11 +113,11 @@ module Vagrant # We have more than one provider, ask the user what they want choice = env[:ui].ask(I18n.t( "vagrant.box_add_choose_provider", - options: options)) + options: options) + " ") choice = choice.to_i if choice while !choice || choice <= 0 || choice > providers.length choice = env[:ui].ask(I18n.t( - "vagrant.box_add_choose_provider_again")) + "vagrant.box_add_choose_provider_again") + " ") choice = choice.to_i if choice end