summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-04-17 14:06:45 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-04-17 14:06:45 -0400
commitcdfdb8285a837a3442d75b63a05924ace67df20f (patch)
tree06d1534ff76b1b80baf52d7511dcee61d991cd5c /main.go
parent9b29b1dc30ca57e627195b2238a4fd5b68455b55 (diff)
gofmt
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index a4f31c3..2c32c41 100644
--- a/main.go
+++ b/main.go
@@ -24,7 +24,7 @@ func DoHostfile(fname string) {
hostname := filepath.Base(fname)
cfg, err := readConfigFile(fname)
if err != nil {
- Emit(NewPoint("public", map[string]string{"host":hostname}, map[string]interface{}{"error": err.Error()}))
+ Emit(NewPoint("public", map[string]string{"host": hostname}, map[string]interface{}{"error": err.Error()}))
return
}
for _, address := range getAddresses(cfg) {