From ea871ec9efdbc30a17e0d1c34a403a3a43b0c052 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 26 Feb 2014 11:57:17 -0800 Subject: [PATCH] providers/hyperv: change wording to look a bit better --- plugins/providers/hyperv/action/delete_vm.rb | 2 +- plugins/providers/hyperv/action/stop_instance.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/providers/hyperv/action/delete_vm.rb b/plugins/providers/hyperv/action/delete_vm.rb index afc47dd8f..6f8608b98 100644 --- a/plugins/providers/hyperv/action/delete_vm.rb +++ b/plugins/providers/hyperv/action/delete_vm.rb @@ -7,7 +7,7 @@ module VagrantPlugins end def call(env) - env[:ui].info('Deleting the Machine') + env[:ui].info("Deleting the machine...") options = { VmId: env[:machine].id } env[:machine].provider.driver.execute('delete_vm.ps1', options) @app.call(env) diff --git a/plugins/providers/hyperv/action/stop_instance.rb b/plugins/providers/hyperv/action/stop_instance.rb index fe62693f8..f73e0cefe 100644 --- a/plugins/providers/hyperv/action/stop_instance.rb +++ b/plugins/providers/hyperv/action/stop_instance.rb @@ -7,7 +7,7 @@ module VagrantPlugins end def call(env) - env[:ui].info('Stopping the Machine') + env[:ui].info("Stopping the machine...")) options = { VmId: env[:machine].id } env[:machine].provider.driver.execute('stop_vm.ps1', options) @app.call(env)