Merge pull request #6050 from benh57/fix_environment_error

Fix string parse error in the environment path missing error message.
This commit is contained in:
Mitchell Hashimoto 2015-11-18 11:40:41 -08:00
commit ab1c0a889c
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ module VagrantPlugins
if !expanded_environment_file.file? && !expanded_environment_file.directory? if !expanded_environment_file.file? && !expanded_environment_file.directory?
errors << I18n.t("vagrant.provisioners.puppet.environment_missing", errors << I18n.t("vagrant.provisioners.puppet.environment_missing",
environment: environment.to_s, environment: environment.to_s,
environment_path: expanded_path.to_s) environmentpath: expanded_path.to_s)
end end
end end
end end