From 055d0e48180aac5a32eb8e40d44006dd81b2bbf7 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Wed, 28 Dec 2016 18:26:53 -0800 Subject: [PATCH] . --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index aae3579..4d3d31f 100644 --- a/main.go +++ b/main.go @@ -57,7 +57,7 @@ func exportDb(inputPath, outputDir, format, title string, stride int, pretty boo } func serveDb(serveDir string, port int) error { - log.Printf("starting dictionary server on port %d for extension...\n", port) + log.Printf("starting dictionary server on port %d...\n", port) return http.ListenAndServe(fmt.Sprintf(":%d", port), http.FileServer(http.Dir(serveDir))) }