Parenthesize argument to remove warning

This commit is contained in:
Mitchell Hashimoto 2010-03-14 14:59:35 -07:00
parent 8057e1e94e
commit ab1acf2479
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ module Vagrant
end end
def hd_location=(val) def hd_location=(val)
raise Exception.new "disk_storage must be set to a directory" unless File.directory?(val) raise Exception.new("disk_storage must be set to a directory") unless File.directory?(val)
@hd_location=val @hd_location=val
end end