commands: Remove superflous space
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 22 Sep 2017 18:05:19 +0000 (20:05 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 22 Sep 2017 18:05:19 +0000 (20:05 +0200)
commands/server.go

index f9050162938f7c9ea39a6bec416071387d80201c..98da568b42d11e267759b2d4444dcd513388a45c 100644 (file)
@@ -210,7 +210,7 @@ func (c *commandeer) serve(port int) {
        decorate := func(h http.Handler) http.Handler {
                return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
                        if noHTTPCache {
-                               w.Header().Set("Cache-Control", " no-store, no-cache, must-revalidate, max-age=0")
+                               w.Header().Set("Cache-Control", "no-store, no-cache, must-revalidate, max-age=0")
                                w.Header().Set("Pragma", "no-cache")
                        }
                        h.ServeHTTP(w, r)