From 6f9a9b63c97aa00706f3be8de959bab55ab85544 Mon Sep 17 00:00:00 2001 From: Mauricio Gomes Date: Fri, 27 Nov 2020 21:24:56 -0500 Subject: [PATCH] Pad with spaces so it lines up with previous progress bar --- dl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dl.go b/dl.go index 4b6487e..dc30d83 100644 --- a/dl.go +++ b/dl.go @@ -157,7 +157,7 @@ func concatFiles(filename string, filesize uint64, parts int) { bar := progressbar.DefaultBytes( int64(filesize), - "Combining", + "Combining ", ) for part := 0; part < parts; part++ {