Merge pull request #3020 from lheinlen-os/nil_machine_id

core: do not to_s the machine id if it is nil
This commit is contained in:
Mitchell Hashimoto 2014-02-25 07:24:55 -08:00
commit d7e61a19f2
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ module Vagrant
end
# Store the ID locally
@id = value.to_s
@id = value.nil? ? nil : value.to_s
# Notify the provider that the ID changed in case it needs to do
# any accounting from it.