Add missing argument to ProviderVirtualBox::SyncedFolder#driver call

GH-2577 missed passing the `machine` to the `driver` method.
This commit is contained in:
Teemu Matilainen 2013-12-05 00:21:16 -03:00
parent 1b847b7829
commit 897fde3274
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ module VagrantPlugins
end
def cleanup(machine)
driver.clear_shared_folders
driver(machine).clear_shared_folders
end
protected