providers/hyperv: change wording to look a bit better

This commit is contained in:
Mitchell Hashimoto 2014-02-26 11:57:17 -08:00
parent 4c810a879a
commit ea871ec9ef
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)