From 01ffec69fcedc29a34e072beab65c054c75f2afb Mon Sep 17 00:00:00 2001 From: Jarek Kowalski Date: Sun, 11 Feb 2018 08:12:20 -0800 Subject: [PATCH] fixed output of 'storage list' for long block names --- cli/command_storage_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/command_storage_list.go b/cli/command_storage_list.go index c79801d79..6da8d5524 100644 --- a/cli/command_storage_list.go +++ b/cli/command_storage_list.go @@ -23,7 +23,7 @@ func runListStorageBlocks(context *kingpin.ParseContext) error { return b.Error } - fmt.Printf("%-50v %10v %v\n", b.BlockID, b.Length, b.TimeStamp.Local().Format(timeFormat)) + fmt.Printf("%-70v %10v %v\n", b.BlockID, b.Length, b.TimeStamp.Local().Format(timeFormat)) } return nil