main: fix a colon

This commit is contained in:
Cadey Ratio 2017-03-26 21:58:18 -07:00
parent 7dcee8d259
commit 2f08c381e7
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ func main() {
go setupACME(s)
}
l, err := net.Listen("tcp", *webPort)
l, err := net.Listen("tcp", ":"+*webPort)
if err != nil {
log.Fatal(err)
}