Hello golang-dev@googlegroups.com, I'd like you to review this change to https://go.googlecode.com/hg/
LGTM On Thu, Feb 7, 2013 at 4:12 PM, <dsymonds@golang.org> wrote: > Reviewers: golang-dev_googlegroups.com, > > Message: > Hello golang-dev@googlegroups.com, > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > cmd/godoc: fix format strings. > > Please review this at https://codereview.appspot.**com/7309061/<https://codereview.appspot.com/7309... > > Affected files: > M src/cmd/godoc/play-appengine.**go > > > Index: src/cmd/godoc/play-appengine.**go > ==============================**==============================**======= > --- a/src/cmd/godoc/play-**appengine.go > +++ b/src/cmd/godoc/play-**appengine.go > @@ -24,12 +24,12 @@ > resp, err := client.Post(url, req.Header.Get("Content-type")**, > req.Body) > if err != nil { > http.Error(w, "Internal Server Error", 500) > - c.Errorf("making POST request:", err) > + c.Errorf("making POST request: %v", err) > return > } > defer resp.Body.Close() > if _, err := io.Copy(w, resp.Body); err != nil { > http.Error(w, "Internal Server Error", 500) > - c.Errorf("making POST request:", err) > + c.Errorf("making POST request: %v", err) > } > } > > > -- > > ---You received this message because you are subscribed to the Google > Groups "golang-dev" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to golang-dev+unsubscribe@**googlegroups.com<golang-dev%2Bunsubscribe@googlegrou... > . > For more options, visit https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/o... > . > > >
*** Submitted as https://code.google.com/p/go/source/detail?r=052cab218361 *** cmd/godoc: fix format strings. R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/7309061
LGTM.