From f6b95801fc82db9eeeefcea768a6aca4c243c75d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 24 Apr 2010 03:31:51 -0700 Subject: [PATCH] Export progress bar uses new syntax --- lib/vagrant/actions/vm/export.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/actions/vm/export.rb b/lib/vagrant/actions/vm/export.rb index 185b06da4..a967346f5 100644 --- a/lib/vagrant/actions/vm/export.rb +++ b/lib/vagrant/actions/vm/export.rb @@ -36,7 +36,7 @@ module Vagrant def export logger.info "Exporting VM to #{ovf_path}..." @runner.vm.export(ovf_path) do |progress| - update_progress(progress, 100, false) + update_progress(progress.percent, 100, false) end complete_progress