mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 10:44:28 +00:00
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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user