Merge pull request #1990 from michaelglass/patch-2

fix regression preventing boxes that specify support for multiple formats
This commit is contained in:
Mitchell Hashimoto 2013-07-26 15:59:08 -07:00
commit 35dc2d2539
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ module Vagrant
found = false
formats.each do |format|
# Verify that the given provider matches what the box has.
if box_provider.to_sym == format
if box_provider.to_sym == format.to_sym
found = true
break
end