From 4754d5a7be6e6907ca404b26caf07e6e5494febb Mon Sep 17 00:00:00 2001
From: Igor <igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com>
Date: Wed, 15 Apr 2020 20:23:32 +0200
Subject: [PATCH] make listen URL clickable in iTerm (#340)

---
 README.md           | 2 +-
 cmds/houndd/main.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 2ac9ba8f..12e2fb1b 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ go get github.com/hound-search/hound/cmds/...
 2015/03/13 09:07:42 Searcher started for statsd
 2015/03/13 09:07:42 Searcher started for Hound
 2015/03/13 09:07:42 All indexes built!
-2015/03/13 09:07:42 running server at http://localhost:6080...
+2015/03/13 09:07:42 running server at http://localhost:6080
 ```
 
 ### Using Docker (1.4+)
diff --git a/cmds/houndd/main.go b/cmds/houndd/main.go
index 006d0b8e..cb1ef97d 100644
--- a/cmds/houndd/main.go
+++ b/cmds/houndd/main.go
@@ -164,7 +164,7 @@ func main() {
 		}
 	}
 
-	info_log.Printf("running server at http://%s...\n", host)
+	info_log.Printf("running server at http://%s\n", host)
 
 	// Fully enable the web server now that we have indexes
 	panic(ws.ServeWithIndex(idx))