weldr: Remove underscores from FreezeHandler error
Error message strings are not guaranteed to be stable, but should be consistent when used in more than one place.
This commit is contained in:
parent
220c77e37f
commit
728f2d0f81
1 changed files with 1 additions and 1 deletions
|
|
@ -1314,7 +1314,7 @@ func (api *API) blueprintsFreezeHandler(writer http.ResponseWriter, request *htt
|
|||
if bp == nil {
|
||||
rerr := responseError{
|
||||
ID: "UnknownBlueprint",
|
||||
Msg: fmt.Sprintf("%s: blueprint_not_found", name),
|
||||
Msg: fmt.Sprintf("%s: blueprint not found", name),
|
||||
}
|
||||
errors = append(errors, rerr)
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue