From 6dba0c3d2df3143c247e7f38e28f2fc5d2a0e629 Mon Sep 17 00:00:00 2001 From: "notzippy@gmail.com" Date: Sun, 6 Mar 2022 07:45:11 -0800 Subject: [PATCH] Fix bad error syntax An wrapped error message in the cmd module was referencing the wrong parameter value to be built closes revel/revel#1532 --- harness/harness.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/harness.go b/harness/harness.go index 10fbd7a..91947a1 100644 --- a/harness/harness.go +++ b/harness/harness.go @@ -243,7 +243,7 @@ func (h *Harness) refresh() (err *utils.SourceError) { } err = &utils.SourceError{ Title: "App failed to start up", - Description: err.Error(), + Description: newErr.Error(), } return }