Add newline to previous print change.

This commit is contained in:
Dave Collins 2013-12-25 17:47:56 -06:00
parent 6be128a843
commit 195ada0979

View file

@ -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
}