From 2d6ca2b0bd84622550a489d1d61c825330590c0d Mon Sep 17 00:00:00 2001 From: kalipso Date: Tue, 31 Oct 2023 13:12:50 +0100 Subject: [PATCH] [actions] fix missing return --- actions/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/actions.go b/actions/actions.go index 77262a5..5e9939c 100644 --- a/actions/actions.go +++ b/actions/actions.go @@ -45,7 +45,7 @@ func (a StagedActions) executeInternal(f func(Action)) { err := <-a.ActionChan if err != nil { - fmt.Printf("Error occured on Stage %d: %s", idx+1, err) + fmt.Printf("Error occured on Stage %d: %s\n", idx+1, err) } } }