From 195ada097902a82626ed45a492c04a42de7875c2 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 25 Dec 2013 17:47:56 -0600 Subject: [PATCH] Add newline to previous print change. --- util/btcctl/btcctl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/btcctl/btcctl.go b/util/btcctl/btcctl.go index 8e112c34..ac9dc057 100644 --- a/util/btcctl/btcctl.go +++ b/util/btcctl/btcctl.go @@ -110,7 +110,7 @@ func displayGeneric(reply interface{}) error { // is returned if a float64 is not passed. func displayFloat64(reply interface{}) error { if val, ok := reply.(float64); ok { - fmt.Printf("%f", val) + fmt.Printf("%f\n", val) return nil }