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
This commit is contained in:
notzippy@gmail.com
2022-03-06 07:45:11 -08:00
parent bb926f396a
commit 6dba0c3d2d

View File

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