Convert the path to a string because it may be a Pathname

This commit is contained in:
Mitchell Hashimoto 2012-06-22 21:06:49 -07:00
parent fa99eb7e54
commit ba64c28304
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ module Vagrant
# Otherwise, it is a permission denied, so let's raise a proper
# exception
raise Errors::SCPPermissionDenied, :path => from
raise Errors::SCPPermissionDenied, :path => from.to_s
end
protected