From 8744caebcf50095e808233fd7282849115eddacb Mon Sep 17 00:00:00 2001 From: Bjorn Brala Date: Sun, 9 Oct 2016 20:39:17 +0200 Subject: [PATCH] Small typo in options --- plugins/providers/hyperv/driver.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/providers/hyperv/driver.rb b/plugins/providers/hyperv/driver.rb index d348cb79e..1a2f1dd39 100644 --- a/plugins/providers/hyperv/driver.rb +++ b/plugins/providers/hyperv/driver.rb @@ -78,9 +78,9 @@ module VagrantPlugins if config_type === "vmcx" execute('import_vm_vmcx.ps1', options) else - option.delete(:data_path) - option.delete(:source_path) - option.delete(:differencing_disk) + options.delete(:data_path) + options.delete(:source_path) + options.delete(:differencing_disk) execute('import_vm_xml.ps1', options) end end