Appease go fmt after fcc274a

This commit is contained in:
Arlo Breault 2018-03-05 19:34:43 -05:00
parent f6301197cc
commit 10ad59fc9d

View file

@ -262,7 +262,7 @@ func main() {
}
go func() {
log.Printf("Starting HTTP-01 listener")
log.Fatal(http.ListenAndServe(":80", certManager.HTTPHandler(nil)))
log.Fatal(http.ListenAndServe(":80", certManager.HTTPHandler(nil)))
}()
server.TLSConfig = &tls.Config{GetCertificate: certManager.GetCertificate}