Frank Schroeder ee5b06a231 Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:

gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)'  *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 09:02:59 -07:00
..
2017-04-20 09:02:59 -07:00
2017-02-09 20:49:17 -05:00
2017-03-23 18:48:13 -04:00
2017-02-09 20:49:17 -05:00
2016-09-26 16:06:53 -07:00
2017-02-10 13:02:37 -05:00
2017-03-23 18:48:13 -04:00
2015-01-25 05:00:52 +01:00
2017-02-10 20:14:22 -05:00
2017-02-10 20:14:22 -05:00