From 6bf842326a3cdf1c14abea01dbb26d180580485a Mon Sep 17 00:00:00 2001 From: Emiliano Ticci Date: Tue, 29 Oct 2013 00:01:38 +0100 Subject: [PATCH] Machine ID should always be a string --- lib/vagrant/machine.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/machine.rb b/lib/vagrant/machine.rb index 287161365..78780dd91 100644 --- a/lib/vagrant/machine.rb +++ b/lib/vagrant/machine.rb @@ -220,7 +220,7 @@ module Vagrant end # Store the ID locally - @id = value + @id = value.to_s # Notify the provider that the ID changed in case it needs to do # any accounting from it.