client.go | 5 ++++- diff --git a/client.go b/client.go index 94cbca0d81f68b9699f1cc2fce10898be55e295e..c5ad0dd1399055a7de9c4125c1dbeeb8029097e4 100644 --- a/client.go +++ b/client.go @@ -235,8 +235,11 @@ fmt.Fprint(w, "") } else { fmt.Fprint(w, t.Name()) } + fmt.Fprint(w, "\n") if t.haveInfo() { - fmt.Fprintf(w, ": %f%% of %d bytes", 100*(1-float32(t.BytesLeft())/float32(t.Length())), t.Length()) + fmt.Fprintf(w, "%f%% of %d bytes", 100*(1-float32(t.BytesLeft())/float32(t.Length())), t.Length()) + } else { + w.WriteString("") } fmt.Fprint(w, "\n") fmt.Fprint(w, "Blocked reads:")