| Index: milo/appengine/buildbot/html.go
|
| diff --git a/milo/appengine/buildbot/html.go b/milo/appengine/buildbot/html.go
|
| index cf16e70572af8658ba00b2288d03b1b40a9dd8d2..b884e914f156b162c537d4492cd87209c343c3a4 100644
|
| --- a/milo/appengine/buildbot/html.go
|
| +++ b/milo/appengine/buildbot/html.go
|
| @@ -85,14 +85,14 @@ func (b Builder) Render(c context.Context, r *http.Request, p httprouter.Params)
|
| master := p.ByName("master")
|
| if master == "" {
|
| return nil, &miloerror.Error{
|
| - Message: "No master",
|
| + Message: "No master specified",
|
| Code: http.StatusBadRequest,
|
| }
|
| }
|
| builder := p.ByName("builder")
|
| if builder == "" {
|
| return nil, &miloerror.Error{
|
| - Message: "No builder",
|
| + Message: "No builder specified",
|
| Code: http.StatusBadRequest,
|
| }
|
| }
|
|
|