Fix string parse error in the environment path missing error message.

This commit is contained in:
Ben Hines 2015-07-28 11:16:20 -07:00
parent 2209d7621b
commit 3f29be0de2
1 changed files with 1 additions and 1 deletions

View File

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