Merge pull request #636 from zev/master

Fix a syntax error in ssh.rb
This commit is contained in:
Mitchell Hashimoto 2012-01-12 22:11:46 -08:00
commit 9030496afd
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ module Vagrant
if Util::Platform.windows? if Util::Platform.windows?
raise Errors::SSHUnavailableWindows, :host => ssh_info[:host], raise Errors::SSHUnavailableWindows, :host => ssh_info[:host],
:port => ssh_info[:port], :port => ssh_info[:port],
:username => ssh_info[:username, :username => ssh_info[:username],
:key_path => ssh_info[:private_key_path] :key_path => ssh_info[:private_key_path]
end end