diff --git a/CHANGELOG.md b/CHANGELOG.md index 80b54bae6..a4f320aa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,8 @@ BUG FIXES: carry on checks whether the halt succeeded. [GH-1679] - Handle the case where a roles path for Chef solo isn't properly defined. [GH-1665] + - Finding V1 boxes now works properly again to avoid "box not found" + errors. [GH-1691] ## 1.2.2 (April 23, 2013) diff --git a/lib/vagrant/box_collection.rb b/lib/vagrant/box_collection.rb index 837aa861b..6b30411cf 100644 --- a/lib/vagrant/box_collection.rb +++ b/lib/vagrant/box_collection.rb @@ -234,7 +234,7 @@ module Vagrant # If we're looking for a VirtualBox box, then we check if there is # a V1 box. - if provider == :virtualbox + if provider.to_sym == :virtualbox # Check if a V1 version of this box exists, and if so, raise an # exception notifying the caller that the box exists but needs # to be upgraded. We don't do the upgrade here because it can be