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:
Brian C. Lane 2021-02-10 16:42:36 -08:00 committed by Ondřej Budai
parent 220c77e37f
commit 728f2d0f81

View file

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