Fix regression that @geetarista fixed.

This commit is contained in:
Mitchell Hashimoto 2013-04-15 17:03:22 -07:00
parent a3fdfa0989
commit 9fe59d9863
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ module VagrantPlugins
@log_level = :info if @log_level == UNSET_VALUE @log_level = :info if @log_level == UNSET_VALUE
@no_proxy = nil if @no_proxy == UNSET_VALUE @no_proxy = nil if @no_proxy == UNSET_VALUE
@node_name = nil if @node_name == UNSET_VALUE @node_name = nil if @node_name == UNSET_VALUE
@provisioning_path = nil if @provisioning_path == UNSET_VALUIE @provisioning_path = nil if @provisioning_path == UNSET_VALUE
# Make sure the log level is a symbol # Make sure the log level is a symbol
@log_level = @log_level.to_sym @log_level = @log_level.to_sym