core: add a space to the question;

This commit is contained in:
Mitchell Hashimoto 2014-01-23 19:30:30 -08:00
parent f9c9559320
commit 8ef13b037c
1 changed files with 2 additions and 2 deletions

View File

@ -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