Skip to content

Commit

Permalink
Fix bad error syntax
Browse files Browse the repository at this point in the history
An wrapped error message in the cmd module was referencing the wrong parameter value to be built
closes revel/revel#1532
  • Loading branch information
notzippy committed Mar 6, 2022
1 parent bb926f3 commit 6dba0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion harness/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 6dba0c3

Please sign in to comment.