From 35480e21b265b8d4d16779125f6898dceaaf30c4 Mon Sep 17 00:00:00 2001 From: Matthew Hooker Date: Fri, 24 Mar 2017 11:56:40 -0700 Subject: [PATCH] fix typo --- builder/virtualbox/common/step_remove_devices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/virtualbox/common/step_remove_devices.go b/builder/virtualbox/common/step_remove_devices.go index bcb261bb0..6508a138f 100644 --- a/builder/virtualbox/common/step_remove_devices.go +++ b/builder/virtualbox/common/step_remove_devices.go @@ -54,7 +54,7 @@ func (s *StepRemoveDevices) Run(state multistep.StateBag) multistep.StepAction { } vboxErr = driver.VBoxManage(command...) if vboxErr != nil { - log.Printf("Error removing floppy controller. Retrying") + log.Printf("Error removing floppy controller. Retrying.") return false, nil } return true, nil