Merge pull request #53 from gaku/master

Fixed broken HTML for autobahn test server.
This commit is contained in:
Gary Burd 2014-12-24 08:19:31 -08:00
commit 1f87405cd9
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ func serveHome(w http.ResponseWriter, r *http.Request) {
return
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
io.WriteString(w, "<html><body>Echo Server</body></html")
io.WriteString(w, "<html><body>Echo Server</body></html>")
}
var addr = flag.String("addr", ":9000", "http service address")