s/not/!/ in ansible provisioner config

This commit is contained in:
Mitchell Hashimoto 2013-04-05 09:43:56 -07:00
parent cd14767ef5
commit d7990721a0
1 changed files with 5 additions and 5 deletions

View File

@ -51,7 +51,7 @@ module VagrantPlugins
# Validate that extra_vars is a hash, if set # Validate that extra_vars is a hash, if set
if extra_vars if extra_vars
if not extra_vars.kind_of?(Hash) if !extra_vars.kind_of?(Hash)
errors << I18n.t("vagrant.provisioners.ansible.extra_vars_not_hash") errors << I18n.t("vagrant.provisioners.ansible.extra_vars_not_hash")
end end
end end