From 432080477985802804796b57a096d27194628e15 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Thu, 16 Nov 2017 19:49:14 +0000 Subject: [PATCH] Fix bug in error output message --- cli/setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/setup.go b/cli/setup.go index 65b1eaaa..ac620ef5 100644 --- a/cli/setup.go +++ b/cli/setup.go @@ -56,7 +56,7 @@ func setup() { if opts.DB.Path != "memory" { if ok, _ := regexp.MatchString(`^(s3|gcs|logr|file|rixxdb|dendrodb)://(.+)$`, opts.DB.Path); !ok { - log.Fatal("Invalid path %s. Specify a valid data store configuration path", opts.DB.Path) + log.Fatalf("Invalid path %s. Specify a valid data store configuration path", opts.DB.Path) } }